body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    background: #1f3a5f;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.header h1 {
    margin: 0;
    font-size: 36px;
}

.header p {
    margin: 10px 0 0 0;
    font-size: 18px;
}

/* HERO BANNER */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../images/medical.png') no-repeat center;
    background-size: cover;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 32px;
    margin: 0;
    max-width: 800px;
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    max-width: 650px;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 25px 20px;
}

.cta {
    background: #28a745;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.cta:hover {
    background: #23913c;
}

/* CALL NOW */
.call-now {
    text-align: center;
    font-size: 18px;
    padding: 0 20px 20px 20px;
}

.call-now a {
    color: #1f3a5f;
    font-weight: bold;
    text-decoration: none;
}

/* SERVICES */
.services {
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 32px;
}

.cards {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: #f4f4f4;
    padding: 25px;
    flex: 1;
    border-radius: 8px;
    box-sizing: border-box;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 28px;
}

.card p {
    margin: 0;
    line-height: 1.6;
    font-size: 17px;
}

/* ABOUT */
.about {
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
    margin-top: 0;
    font-size: 32px;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 18px;
}

/* MAP */
.map {
    width: 100%;
}

/* CONTACT SECTION */
.demo-contact {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

.demo-contact h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 32px;
}

.demo-note {
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* FORM FIXES */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .cta,
.contact-form button.cta {
    align-self: center;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    padding: 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.footer-col h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
}

.footer-col p {
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}

.footer-col a {
    color: #28a745;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px 20px;
    border-top: 1px solid #333;
    margin: 0;
    font-size: 14px;
}

/* MOBILE FIX (IMPORTANT) */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    .hero {
        height: 240px;
    }

    .hero h2 {
        font-size: 22px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
    }
}

.site-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

.site-credit a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.site-credit a:hover {
    text-decoration: underline;
}