/* ====================================
   RESET & BASE STYLES
   ==================================== */

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

:root {
    --primary-color: #2c5f4f;
    --primary-light: #3a7a63;
    --primary-dark: #1d3f31;
    --secondary-color: #4a8a73;
    --accent-color: #6db5a0;
    --accent-light: #a8d5c4;

    --text-dark: #1a1a1a;
    --text-gray: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f5f7f5;
    --lighter-bg: #f0f3f2;
    --border-color: #e0e0e0;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 32px rgba(44, 95, 79, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--text-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   NAVIGATION
   ==================================== */

.navbar {
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-light);
}

.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* add hamburger menu button styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.quote {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-left: 4px solid var(--white);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.quote p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--white);
}

.quote cite {
    font-style: normal;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ====================================
   GENERAL SECTION STYLES
   ==================================== */

section {
    padding: 80px 20px;
}

section:nth-child(odd) {
    background-color: var(--white);
}

section:nth-child(even) {
    background-color: var(--lighter-bg);
}

.section-why {
    background-color: var(--white);
}

.section-methods {
    background-color: var(--lighter-bg);
}

.section-about {
    background-color: var(--white);
    position: relative;
}

.section-reviews {
    background-color: var(--lighter-bg);
}

.section-pricing {
    background-color: var(--white);
}

.section-location {
    background-color: var(--lighter-bg);
}

.section-contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.section-contact-cta h2 {
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.section-contact-cta h2 {
    color: var(--white);
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

/* ====================================
   SECTION: WHY
   ==================================== */

.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text p {
    text-align: justify;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* ====================================
   SECTION: METHODS
   ==================================== */

.therapy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.therapy-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.therapy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.therapy-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.therapy-card p {
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-gray);
}

.therapy-card ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.therapy-card li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    text-align: left;
    color: var(--text-light);
}

.cta-box {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.cta-box p {
    text-align: left;
    color: var(--white);
}

.cta-box h4 {
    color: var(--white);
    margin-top: 1.5rem;
}

.checklist {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.checklist li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
}

.cta-invitation {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 2rem;
}

/* ====================================
   SECTION: ABOUT
   ==================================== */

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
}

.about-text {
    background-color: var(--lighter-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
}

.about-text h3 {
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-light);
}

.about-text p {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.95;
    font-size: 1.05rem;
}

.about-text p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text ul {
    list-style: none;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.about-text ul li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.about-text ul li:last-child {
    margin-bottom: 0;
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-light);
    border-radius: 50%;
    font-size: 0.9rem;
}

.about-text ul li strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    border: 4px solid var(--white);
}

/* ====================================
   SECTION: REVIEWS
   ==================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.review-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: left;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

/* ====================================
   SECTION: PRICING
   ==================================== */

.pricing-single-container {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.pricing-content {
    background-color: var(--lighter-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1.5fr;
    gap: 3rem;
    align-items: center;
    border: 2px solid var(--accent-light);
    transition: all 0.3s ease;
}

.pricing-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(44, 95, 79, 0.2);
}

.pricing-left {
    text-align: center;
}

.pricing-left h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.price-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.price-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.session-duration {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-align: center;
}

.pricing-divider {
    width: 2px;
    height: 200px;
    background-color: var(--accent-light);
}

.pricing-right {
    display: flex;
    flex-direction: column;
}

.pricing-right h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pricing-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-benefits li span {
    flex: 1;
    text-align: left;
}

.pricing-cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: none;
    cursor: pointer;
}

.pricing-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-light);
}

/* ====================================
   SECTION: LOCATION & FAQ
   ==================================== */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-map h3,
.location-faq h3 {
    margin-bottom: 1.5rem;
}

.location-map iframe {
    margin-bottom: 1.5rem;
}

.location-details {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: var(--text-gray);
    box-shadow: var(--shadow-sm);
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: var(--lighter-bg);
    border-color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: var(--lighter-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    color: var(--text-gray);
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    text-align: left;
}

/* ====================================
   SECTION: CONTACT CTA
   ==================================== */

.contact-cta-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background-color: var(--light-bg);
}

/* ====================================
   MODAL
   ==================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background-color: var(--lighter-bg);
}

.modal-header {
    background-color: var(--primary-color);
    padding: 2rem;
    text-align: center;
}

.modal-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 2.5rem;
    text-align: center;
}

.modal-body p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid var(--accent-light);
}

.phone-icon {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
}

.modal-phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-phone-number:hover {
    color: var(--primary-light);
}

.modal-hours {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0 !important;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background-color: #1a3a30;
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-col p {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Privacy policy link styling */
.privacy-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--accent-light) !important;
    text-decoration-color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .quote {
        padding: 1.5rem;
    }

    .quote p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    section {
        padding: 50px 15px;
    }

    .therapy-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .therapy-card,
    .review-card {
        padding: 1.25rem;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .pricing-divider {
        display: none;
    }

    .pricing-left {
        padding-bottom: 2rem;
        border-bottom: 2px solid var(--accent-light);
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .pricing-cta-button {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-phone-number {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-text {
        padding: 1.25rem;
        text-align: left;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        text-align: left;
        font-size: 1rem;
    }

    .about-text ul {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .about-text ul li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .about-image {
        position: static;
        transform: none;
        top: auto;
    }

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

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer {
        padding: 60px 20px 25px;
    }

    .footer-col h4 {
        margin-bottom: 1.5rem;
    }

    .footer-col p {
        margin-bottom: 1.25rem;
    }

    .footer-bottom {
        padding-top: 2rem;
        margin-top: 1.5rem;
    }

    /* remove extra margin on mobile */
    .footer-col-contact {
        margin-left: 0;
    }

    p {
        text-align: left;
    }

    .intro-text p,
    .about-text p,
    .offer-intro,
    .quote p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.3rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 450px;
        padding: 50px 12px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 40px 12px;
    }

    .therapy-grid,
    .reviews-grid {
        gap: 1.25rem;
    }

    .therapy-card,
    .review-card {
        padding: 1rem;
    }

    .pricing-content {
        padding: 1rem;
        gap: 1.25rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-right h4 {
        font-size: 1.1rem;
    }

    .pricing-benefits li {
        font-size: 0.95rem;
    }

    .cta-invitation {
        font-size: 1.1rem;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text ul {
        padding: 0.75rem;
        margin: 1rem 0;
    }

    .about-text ul li {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .modal-phone {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-phone-number {
        font-size: 1.3rem;
    }
}
