* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;
    background: #f5f8fc;
    color: #222;
    line-height: 1.8;

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;

}

.container {

    width: 100%;
    max-width: 1320px;
    margin: auto;

}

.hero {
    position: relative;
    background: url("./image/heo-img.png") center center/cover no-repeat;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 110, 189, 0.85),
            rgba(3, 60, 115, 0.90));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-left {

    width: 100%;
    max-width: 900px;
}



.hero h1 {

    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;

}

.hero p {

    font-size: 17px;
    opacity: .95;
    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;
    gap: 15px;
    margin-bottom: 40px;

}

.btn-primary {

    background: #fff;
    color: #00917f;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;

}

.btn-primary:hover {

    background: #f4f4f4;

}

.btn-secondary {

    background: #1fa14d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;

}

.stats {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.stat-box {

    background: #fff;
    color: #222;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.stat-box h3 {

    color: #00917f;
    font-size: 34px;

}

.stat-box p {

    margin-top: 10px;
    font-size: 15px;
    margin-bottom: 0;

}

section {

    padding: 20px 0;

}

h2 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #00917f;
}
h3{
   color: #00917f; 
}
p {

    margin-bottom: 20px;
    font-size: 16px;

}

.about-grid {

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;

}

.about-image img {

    border-radius: 20px;

}
.specialty-links h3{
    margin: 0 0 18px;
}

.specialty-links h3 a{
    display: block;
    padding: 18px 25px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: #00917f;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.specialty-links h3 a:hover{
    background: #00917f;
    color: #fff;
    border-color: #00917f;
}
.accordion {
    margin-top: 25px;
}

.accordion-item {

    background: #fff;
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.accordion-title {

    padding: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;

}

.accordion-content {

    display: none;
    padding: 20px;
    border-top: 1px solid #eee;

}

.feature-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 45px;

}

.feature-box {

    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    text-align: center;

}

.feature-box i {

    font-size: 42px;
    color: #00917f;
    margin-bottom: 20px;

}

.feature-box h4 {

    margin-bottom: 12px;

}

.disease-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;

}

.disease-card {

    background: #fff;
    padding: 25px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.disease-card i {

    color: #00917f;
    margin-right: 10px;

}

.expert-section {

    background: #fff;

}


.consult-section {

    background: #eef7ff;

}

.faq {

    margin-top: 40px;

}

.faq-item {

    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.faq-question {

    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 17px;

}

.faq-question i {

    transition: .3s;

}

.faq-answer {

    display: none;
    padding: 0 25px 25px;
    line-height: 1.8;
    color: #666;

}

.contact-box {

    padding: 90px 0;
    background: linear-gradient(135deg, #00917f, #0c8174);

}

.contact-card {

    background: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.contact-card h3 {

    font-size: 34px;
    margin-bottom: 35px;
    color: #00917f;

}

.contact-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;

}

.btn-green {

    background: #0ca54b;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;

}

.btn-green:hover {

    background: #09853d;

}

.btn-red {

    background: #d62d2d;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;

}

.btn-red:hover {

    background: #bb1f1f;

}

.contact-card p {

    margin-top: 20px;
    margin-bottom: 0;

}

.contact-card p a {

    color: #00917f;
    font-weight: 600;

}

footer {

    background: #00917f;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-size: 15px;

}


@media(max-width:992px) {

    .hero-content,
    .about-grid {

        grid-template-columns: 1fr;
        display: grid;

    }

    .hero-right {

        text-align: center;

    }

    .hero h1 {

        font-size: 38px;

    }

    .feature-grid {

        grid-template-columns: 1fr;

    }

    .disease-grid {

        grid-template-columns: 1fr 1fr;

    }

    .stats {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .hero {

        padding: 60px 0;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero h1 {

        font-size: 32px;

    }

    h2 {

        font-size: 28px;

    }

    .contact-card {

        padding: 35px 20px;

    }

    .contact-card h3 {

        font-size: 28px;

    }

    .contact-buttons {

        flex-direction: column;

    }

    .disease-grid {

        grid-template-columns: 1fr;

    }

}