:root {
    --color-cream: #FAFAFA;
    --color-sage: #245F73;
    --color-sage-light: #3A7A8F;
    --color-sage-dark: #5A5A5C;
    --color-black: #1a1a1a;
    --color-white: #FFFFFF;
    --color-warm-gray: #F5F4F3;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.08);
    --shadow-hover: 0 8px 30px rgba(26, 26, 26, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-black);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h2, h3, h4, p, li, span, a {
    color: var(--color-sage);
}

h1 {
    color: var(--color-black);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-sage-dark);
}

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

section {
    padding: 6rem 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(36, 95, 115, 0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-black) !important;
}

.logo span {
    color: var(--color-black);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav > ul > li {
    position: relative;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}

nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: var(--transition-smooth);
}

nav > ul > li > a:hover::after {
    width: 100%;
}

/* Desktop dropdown */
.nav-dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: -1rem;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(10px);
    min-width: 260px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(36, 95, 115, 0.08);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(36, 95, 115, 0.08);
}

.dropdown-menu li a::after {
    display: none;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-black);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-sage);
    color: var(--color-white) !important;
    border: 2px solid var(--color-sage);
}

.btn-primary:hover {
    background: var(--color-sage-dark);
    border-color: var(--color-sage-dark);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-black);
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white) !important;
}

/* Header CTA button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: #2C8FA8;
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 6px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    margin-left: 1rem;
}

.header-cta:hover {
    background: #237689;
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 143, 168, 0.3);
}

/* Booking button (theme colors) */
.btn-booking {
    background: var(--color-sage);
    color: var(--color-white) !important;
    border: 2px solid var(--color-sage);
}

.btn-booking:hover {
    background: var(--color-sage-dark);
    border-color: var(--color-sage-dark);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-booking svg {
    stroke: currentColor;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(36, 95, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.hero-image-wrapper {
    position: relative;
    max-width: 220px;
}

.hero-image-frame {
    position: relative;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.hero-image-frame::before {
    display: none;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
}

.hero-text h1 {
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--color-sage-dark) !important;
    margin-bottom: 2rem;
}

.hero-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-left: 0.6rem;
}

.hero-cta {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(36, 95, 115, 0.1);
    border-left: 4px solid var(--color-sage);
    border-radius: 0 8px 8px 0;
}

.hero-cta p {
    margin-bottom: 0;
    font-weight: 500;
}

.hero-contact {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-sage);
}

/* Services Section */
.services {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    background: var(--color-cream);
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card a {
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-sage);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--color-sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-sage-dark);
}

.service-card h3 {
    font-size: 1.25rem;
}

.service-duration {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-sage-dark);
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 1.075rem;
    margin-bottom: 0;
}

.service-card .learn-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-sage-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-card .learn-more:hover {
    color: var(--color-sage);
}

/* About Me Section */
.about-me {
    background: var(--color-white);
}

.about-me-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-me-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-me-content p:last-child {
    margin-bottom: 0;
}

/* Credentials Section */
.credentials {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm-gray) 100%);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.credential-block {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.credential-block h3 {
    font-size: 1.225rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-sage-light);
}

.credential-list {
    list-style: none;
}

.credential-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.075rem;
    border-bottom: 1px solid rgba(36, 95, 115, 0.15);
}

.credential-list li:last-child {
    border-bottom: none;
}

.credential-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: var(--color-sage);
    border-radius: 50%;
}

.credential-year {
    display: block;
    font-size: 0.975rem;
    color: var(--color-sage-dark) !important;
    margin-bottom: 0.25rem;
}

/* Specialties Section */
.specialties {
    background: var(--color-white);
}

.specialties-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    columns: 2;
    column-gap: 3rem;
}

.specialties-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.175rem;
}

.specialties-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--color-sage);
    border-radius: 50%;
}

/* Contact Section */
.contact {
    background: var(--color-white);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-sage-dark);
}

.contact-item-text {
    padding-top: 0.5rem;
}

.contact-item-label {
    font-size: 0.975rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-sage-dark) !important;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1.125rem;
}

.fees-section {
    margin-top: 2rem;
}

.fees-section h3 {
    font-size: 1.425rem;
    margin-bottom: 0.75rem;
}

.fees-section p {
    font-size: 1.075rem;
}

.fees-section a {
    color: var(--color-sage-dark);
    font-weight: 500;
}

/* Service page styles */
.service-page-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-gray) 100%);
    position: relative;
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(36, 95, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-page-hero h1 {
    margin-bottom: 1rem;
}

.service-page-hero .hero-subtitle {
    margin-bottom: 1.5rem;
}

.service-page-hero .hero-bio {
    max-width: 750px;
    margin-left: 0.6rem;
}

.service-page-content {
    background: var(--color-white);
    padding: 5rem 0;
}

.service-page-content .content-inner {
    max-width: 750px;
    margin: 0 auto;
}

.service-page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-page-content h2:first-child {
    margin-top: 0;
}

.service-page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.service-page-content ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--color-sage);
    border-radius: 50%;
}

/* Hero section sub-headings */
.hero-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.hero-heading:first-of-type {
    margin-top: 0;
}

.schedule-link {
    color: var(--color-sage-dark);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.schedule-link:hover {
    color: var(--color-sage);
}

/* Collapsible sections on service pages */
.service-page-content details {
    background: var(--color-cream);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.service-page-content summary {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.service-page-content summary::-webkit-details-marker {
    display: none;
}

.service-page-content summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-sage-dark);
    transition: transform 0.3s ease;
}

.service-page-content details[open] summary::after {
    content: '\2212';
}

.service-page-content details .details-content {
    padding: 0 1.5rem 1.5rem;
}

/* FAQ Section */
.faq {
    background: var(--color-cream);
    padding: 5rem 0;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-sage-dark);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* Service page CTA */
.service-cta {
    background: var(--color-sage);
    padding: 4rem 0;
    text-align: center;
}

.service-cta h2 {
    color: var(--color-white) !important;
    margin-bottom: 1rem;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.25rem;
}

.service-cta a.schedule-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-cta .btn-primary {
    background: var(--color-white);
    color: var(--color-sage-dark) !important;
    border-color: var(--color-white);
}

.service-cta .btn-primary:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-sage-dark) !important;
}

.service-cta .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white) !important;
}

.service-cta .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-sage-dark) !important;
}

.service-cta .btn-booking {
    background: var(--color-white);
    color: var(--color-sage-dark) !important;
    border-color: var(--color-white);
}

.service-cta .btn-booking:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-sage-dark) !important;
}

/* Breadcrumbs */
.breadcrumbs {
    padding-top: 6rem;
    padding-bottom: 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-gray) 100%);
}

.breadcrumbs nav {
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--color-sage-dark);
}

.breadcrumbs span {
    color: var(--color-sage-dark);
    margin: 0 0.5rem;
}

/* Footer */
footer {
    background: var(--color-black);
    padding: 3rem 0;
}

footer, footer a, footer p, footer span {
    color: rgba(255, 255, 255, 0.7) !important;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-white) !important;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--color-white) !important;
}

.footer-copyright {
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-contact {
        justify-content: center;
    }

    .hero-cta {
        text-align: left;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    nav > ul {
        display: none;
    }

    nav > ul.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid rgba(36, 95, 115, 0.2);
        box-shadow: var(--shadow-soft);
    }

    nav > ul.open li a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(36, 95, 115, 0.1);
    }

    nav > ul.open li:last-child a {
        border-bottom: none;
    }

    nav > ul.open .dropdown-menu {
        display: block;
        position: static;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        min-width: auto;
        padding: 0;
        border-radius: 0;
    }

    nav > ul.open .dropdown-menu li a {
        padding-left: 1.5rem;
        font-size: 0.85rem;
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .header-cta {
        display: inline-flex;
        font-size: 0.65rem;
        padding: 0.35rem 0.6rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        max-width: 5.5rem;
        flex-shrink: 0;
    }

    .logo {
        flex-shrink: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero-image-wrapper {
        max-width: 160px;
    }

    .hero-contact {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .service-card {
        padding: 2rem;
    }

    .service-cta .hero-contact {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }
}
