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

.custom-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(80, 48, 48);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: rgb(80, 48, 48);
}

@keyframes swing {
    0% { transform: rotate(0deg); }
    2.86% { transform: rotate(10deg); }
    5.72% { transform: rotate(-10deg); }
    8.58% { transform: rotate(6deg); }
    11.44% { transform: rotate(-6deg); }
    14.3% { transform: rotate(3deg); }
    17.16% { transform: rotate(-3deg); }
    20% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.ub-ani-swing {
    animation: swing 7s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    transform-origin: top center;
}

.header {
    background-color: #ffefef;
    padding: 0;
    height: 90px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .custom-container {
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.header-logo {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-height: 75px;
    width: auto;
    display: block;
}

.header-logo.hidden {
    opacity: 0;
    visibility: hidden;
}

.header-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}

.header-btn.visible {
    opacity: 1;
    visibility: visible;
}

.header-btn.btn-whatsapp:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-section {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    height: 658px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.58);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title-1 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-2 {
    font-size: 50px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    max-width: 280px;
}

.hero-feature img {
    width: 41px;
    height: 41px;
    margin-bottom: 15px;
}

.hero-feature p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 26px;
    text-align: center;
}

.hero-feature p a {
    color: white;
    text-decoration: none;
}

.hero-feature p a:hover {
    color: white;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #f19998;
    color: rgb(80, 48, 48);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

.btn-whatsapp:hover {
    background-color: #e08887;
    color: rgb(80, 48, 48);
    transform: scale(1.05);
}

.features-section {
    background-color: #ffefef;
    padding: 80px 0;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.feature-item {
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border: 2px solid #503030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-item p {
    color: rgb(102, 101, 101);
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
}

.price-section {
    background-color: #f6f6f6;
    padding: 80px 0;
}

.price-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.price-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 5px;
    background-color: #f2999d;
    border-radius: 3px;
}

.price-card {
    background-color: #f19898;
    color: white;
    padding: 50px 40px;
    text-align: center;
    max-width: 373px;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #503030;
}

.price-card h3 {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: rgb(80, 48, 48);
}

.price-icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.price-icon-circle img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.price-label {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgb(80, 48, 48);
    margin-bottom: 0;
    line-height: 29px;
}

.price-amount {
    font-size: 38px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: rgb(80, 48, 48);
    margin-bottom: 30px;
    line-height: 29px;
}

.price-features {
    text-align: center;
    margin-bottom: 30px;
}

.price-features p {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgb(80, 48, 48);
    margin-bottom: 16px;
    line-height: 26px;
}

.btn-price {
    background-color: #ffffff;
    color: #503030;
    padding: 15px 0;
    border: 1px solid #503030;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 249px;
    min-height: 49px;
    text-align: center;
    transition: all 0.3s;
}

.btn-price:hover {
    background-color: #f0f0f0;
    color: #503030;
    transform: scale(1.05);
    cursor: pointer;
}

.info-cards-section {
    background-color: #ffefef;
    padding: 80px 0;
}

.info-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.info-card-icon {
    width: 100px;
    height: 100px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon img {
    width: 56px;
    height: 56px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    color: #503030;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-card p {
    color: #503030;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 80px 0 20px 0;
}

.testimonials-section .custom-container {
    padding-left: 50px;
    padding-right: 50px;
}

.testimonials-section h2 {
    text-align: center;
    color: #503030;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 80px;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 5px;
    background-color: #f2999d;
    border-radius: 3px;
}

.testimonial-item {
    margin-bottom: 60px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content.reverse {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex: 0 0 auto;
}

.testimonial-image img {
    width: 389px;
    height: 301px;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-text {
    flex: 1;
    min-width: 300px;
    max-width: 505px;
}

.testimonial-text h3 {
    color: #f19898;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonial-text p {
    color: rgb(102, 101, 101);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    font-family: Arial, sans-serif;
    line-height: 22px;
    text-align: justify;
}

.locations-section {
    background-color: #ffefef;
    padding: 80px 0 40px 0;
}

.locations-section h2 {
    text-align: center;
    color: #503030;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 70px;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.locations-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 5px;
    background-color: #f2999d;
    border-radius: 3px;
}

.location-item {
    margin-bottom: 30px;
}

.locations-section .row.mt-4 {
    margin-top: 0 !important;
}

.location-item h3 {
    color: #f19898;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
}

.location-item p {
    color: #666565;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    width: 90%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.about-doctor-section {
    background-color: #f6f6f6;
    padding: 80px 0;
}

.about-doctor-section .custom-container {
    padding-left: 50px;
    padding-right: 50px;
}

.about-doctor-section h2 {
    text-align: center;
    color: #503030;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-doctor-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 5px;
    background-color: #f2999d;
    border-radius: 3px;
}

.about-doctor-subtitle {
    text-align: center;
    color: rgb(102, 101, 101);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 60px;
    margin-top: 30px;
}

.about-doctor-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-doctor-image {
    flex: 0 0 auto;
}

.about-doctor-image img {
    width: 483px;
    height: 660px;
    object-fit: cover;
    border-radius: 10px;
}

.about-doctor-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-doctor-text p {
    color: rgb(102, 101, 101);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    line-height: 26px;
    margin-bottom: 20px;
    text-align: left;
}

.gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.gallery-section h2 {
    text-align: center;
    color: #503030;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 5px;
    background-color: #f2999d;
    border-radius: 3px;
}

.gallery-subtitle {
    text-align: center;
    color: rgb(102, 101, 101);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 60px;
    margin-top: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.lightbox-close:hover {
    color: #f19898;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 20px;
    z-index: 10000;
    transition: background 0.3s;
    user-select: none;
}

.lightbox-arrow:hover {
    background: rgba(241, 152, 152, 0.8);
}

.lightbox-arrow-left {
    left: 20px;
}

.lightbox-arrow-right {
    right: 20px;
}

.faq-section {
    background-color: #f6f6f6;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: #503030;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 70px;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5%;
    height: 5px;
    background-color: #f2999d;
    border-radius: 3px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #503030;
    padding: 20px 50px 20px 20px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s;
    user-select: none;
}

.faq-question:hover {
    background-color: #ffefef;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #f19898;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    color: rgb(102, 101, 101);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}

.cta-section {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    line-height: 1.3;
}

.btn-cta {
    background-color: #f19998;
    color: rgb(80, 48, 48);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-cta img {
    width: 24px;
    height: 24px;
}

.btn-cta:hover {
    background-color: #e08887;
    color: rgb(80, 48, 48);
    transform: scale(1.05);
}

footer {
    background-color: #ffefef;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-info {
    flex: 0 0 auto;
    text-align: right;
}

.footer-info p {
    color: rgb(102, 101, 101);
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    margin-bottom: 0;
}

footer a {
    color: #f19998;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .custom-container {
        padding: 0 20px;
    }

    .features-container,
    .info-cards-container {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: 80px;
    }

    .header-logo {
        max-width: 220px;
        max-height: 60px;
        margin: 0;
    }

    .header-btn {
        width: auto;
        margin: 0;
    }

    .header-btn.btn-whatsapp {
        font-size: 13px;
        padding: 10px 20px;
        gap: 8px;
    }

    .header-btn.btn-whatsapp img {
        width: 18px;
        height: 18px;
    }

    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 40px 0;
        background-attachment: scroll;
    }

    .cta-section {
        background-attachment: scroll;
        min-height: 500px;
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 29px;
        margin-bottom: 30px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 30px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .lp-element.lp-pom-text p {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    #lp-pom-text-63 p span {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .hero-features {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        max-width: 100%;
    }

    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 30px;
    }

    .features-container,
    .info-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .feature-item,
    .info-card {
        max-width: 100%;
        width: 100%;
    }

    .price-section h2 {
        font-size: 24px;
    }

    .price-card {
        max-width: 100%;
        padding: 40px 20px;
    }

    .btn-price {
        width: 100%;
        max-width: 280px;
    }

    .testimonials-section .custom-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonials-section h2 {
        font-size: 24px;
    }

    .testimonial-content,
    .about-doctor-content {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-content.reverse {
        flex-direction: column;
    }

    .testimonial-image img {
        width: 100%;
        max-width: 389px;
        height: auto;
    }

    .testimonial-text {
        max-width: 100%;
        text-align: center;
    }

    .testimonial-text h3 {
        font-size: 20px;
        text-align: center;
    }

    .testimonial-text p {
        text-align: center;
    }

    .about-doctor-section .custom-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-doctor-section h2 {
        font-size: 24px;
    }

    .about-doctor-image img {
        width: 100%;
        max-width: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lightbox-arrow {
        font-size: 35px;
        padding: 15px;
    }

    .lightbox-arrow-left {
        left: 10px;
    }

    .lightbox-arrow-right {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }

    .faq-section h2 {
        font-size: 24px;
    }

    .faq-accordion {
        padding: 0 10px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 40px 15px 15px;
    }

    .faq-question::after {
        right: 15px;
        font-size: 20px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 0 15px;
    }

    .faq-answer.active {
        padding: 15px;
    }

    .map-container {
        height: 250px;
        margin: 0 auto 20px auto;
    }

    .location-item {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 160px;
    }

    .header-btn.btn-whatsapp {
        font-size: 12px;
        padding: 8px 16px;
    }

    .header-btn.btn-whatsapp img {
        width: 16px;
        height: 16px;
    }

    .hero-section {
        min-height: 400px;
    }

    #lp-pom-text-461 p span {
        font-size: 20px !important;
    }

    #lp-pom-text-63 p span {
        font-size: 24px !important;
    }

    .hero-feature p {
        font-size: 16px;
    }

    .btn-whatsapp {
        font-size: 14px;
        padding: 10px 25px;
    }

    .price-section h2,
    .testimonials-section h2,
    .about-doctor-section h2,
    .gallery-section h2,
    .faq-section h2 {
        font-size: 20px;
    }

    .feature-icon,
    .info-card-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon img,
    .info-card-icon img {
        width: 40px;
        height: 40px;
    }

    .price-icon-circle {
        width: 100px;
        height: 100px;
    }

    .price-icon-circle img {
        width: 100px;
        height: 100px;
    }

    .price-amount {
        font-size: 32px;
    }

    .testimonial-text h3 {
        font-size: 18px;
        text-align: center;
    }

    .testimonial-text p {
        font-size: 14px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 10px 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}