.hero-content {
    padding-bottom: 100px;
}

.section-heading {
    font-family: Gotham;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 70px 70px;
    display: flex;
    gap: 90px;
}

.about-section>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    max-width: 571px;
    width: 50%;
}

.about-content .section-heading {
    color: var(--primary-purple);
}

.about-section h6 {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
}

.about-section p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 530px;
}

/* Knowledge Section */
.knowledge-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px 50px;
}

.knowledge-content {
    width: 100%;
    padding: 50px 40px 70px;
    border-radius: 30px;
    background: var(--primary-blue);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.knowledge-content .section-heading {
    color: var(--white);
    max-width: 788px;
}

.knowledge-content p {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 805px;
}

/* Healthy Beauty Section */
.healthy-beauty-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
    background: var(--gray-light);
}

.healthy-beauty-section .section-heading {
    margin-bottom: 34px;
}

.healthy-beauty-section p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.healthy-beauty-section h5 {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    text-transform: uppercase;
    margin-top: 24px;
}

.health-bases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    margin-bottom: 40px;
    gap: 20px;
}

.health-bases h6 {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: flex;
    gap: 24px;
}

.health-bases h6 img {
    width: 30px;
    height: 30px;
}

.about-doctors {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 100px;
}

.about-doctors p {
    color: var(--primary-purple);
    overflow: hidden;
}

/* Education Experience Section */
.education-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
    display: flex;
    gap: 70px;
}

.education-section>div {
    width: 50%;
}

.education-content {
    max-width: 572px;
}

.education-content .section-title {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
}

.education-content h6 {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 24px;
}

.qualification-wrapper p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 14px;
}


.qualification-wrapper p:last-child {
    margin-bottom: 0;
}

.qualification-wrapper span {
    color: var(--primary-purple);
}

.education-img {
    max-width: 660px;
}


/* Appointment Section */
.appointment-section {
    display: flex;
    gap: 50px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 70px;
    background: linear-gradient(180deg, rgba(129, 30, 161, 0.3) 0%, rgba(89, 78, 143, 0.3) 100%);
}

.appointment-image {
    flex-shrink: 0;
    width: 56%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    align-self: center;
}

.appointment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-form-wrapper {
    width: 44%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.appointment-form-wrapper h2 {
    font-weight: 300;
    font-size: 32px;
    line-height: 48px;
    color: var(--text-dark);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 19px 24px;
    border: 1px solid var(--text-dark);
    border-radius: 56px;
    font-family: Gotham;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-dark);
    background-color: transparent;
    outline: none;
}

.appointment-form textarea {
    border-radius: 20px;
    resize: none;
    min-height: 125px;
    padding-top: 20px;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: var(--text-dark);
    opacity: 1;
}

/* Map Section */
.map-section {
    width: 100%;
    max-width: 1440px;
    padding-top: 64px;
    margin: 0 auto;
}

.map-section iframe {
    width: 100%;
}

@media (max-width: 1440px) {

    .appointment-section,
    .about-section,
    .knowledge-content,
    .knowledge-section,
    .healthy-beauty-section,
    .education-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        padding-bottom: 70px;
    }

    .about-section {
        gap: 60px;
    }

    .about-doctors {
        column-gap: 60px;
    }
}

@media (max-width:1200px) {
    .appointment-section {
        flex-direction: column;
    }

    .appointment-image {
        width: 100%;
        max-width: 750px;
    }

    .appointment-form-wrapper,
    .about-content {
        width: 100%;
    }

    .education-section {
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .about-section,
    .education-section {
        flex-direction: column;
    }

    .about-section>div {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .knowledge-content {
        padding-bottom: 50px;
    }

    .education-section>div {
        width: 100%;
        margin: 0 auto;
    }
}



@media (max-width: 768px) {
    .map-section iframe {
        height: 350px;
    }

    .education-content .section-title {
        font-size: 28px;
    }

    .education-content h6 {
        font-size: 18px;
        line-height: 25px;
        margin-top: 24px;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 24px;
        line-height: 36px;
    }

    .about-section h6,
    .healthy-beauty-section h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .about-section p,
    .knowledge-content p,
    .healthy-beauty-section p,
    .qualification-wrapper p,
    .health-bases h6 {
        font-size: 16px;
        line-height: 22px;
    }

    .health-bases h6 img {
        width: 20px;
        height: 20px;
    }

    .health-bases h6 {
        gap: 20px;
    }

    .knowledge-content {
        gap: 20px;
    }

    .about-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-section {
        gap: 30px;
    }

    .about-doctors {
        column-gap: 30px;
    }

    .about-doctors {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .appointment-section,
    .about-section,
    .knowledge-content,
    .knowledge-section,
    .healthy-beauty-section,
    .education-section {
        padding-left: 20px;
        padding-right: 20px;
    }


    .appointment-form-wrapper h2 {
        font-size: 24px;
    }

    .about-section h6 {
        font-size: 18px;
        line-height: normal;
    }

    .about-section p {
        font-size: 14px;
    }

    .appointment-form input,
    .appointment-form textarea {
        padding: 15px 20px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 22px;
        line-height: 28px;
    }

    .education-content .section-title {
        font-size: 24px;
    }

    .education-content h6 {
        font-size: 18px;
        line-height: 25px;
        margin-top: 24px;
        margin-bottom: 20px;
    }

    .knowledge-content,
    .healthy-beauty-section,
    .education-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .health-bases {
        grid-template-columns: 1fr;
    }
}