/* Import Montserrat Font from Google Fonts - Bold, clean, modern sans-serif */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #3d4a5c;
    --navy-dark: #2d3847;
    --navy-light: #5a6b7f;
    --burgundy: #9d7a7a;
    --burgundy-light: #b89a9a;
    --burgundy-dark: #7d5f5f;
    --white: #f5efe0;
    --cream: #f5efe0;
    --camel: #d4c5b0;
    --warm-cream: #ede5d3;
    --text-color: #4a4a4a;
    --text-light: #6b6b6b;
    --text-dark: #3d4a5c;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--cream);
    font-weight: 600;
    letter-spacing: -0.02em;
}


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

/* Ensure images and videos are responsive */
img, video {
    max-width: 100%;
    height: auto;
}

/* Prevent text from overflowing on mobile */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Better mobile video handling */
video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(245, 239, 224, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    /* Ensure menu flows out of navbar on mobile */
    .navbar {
        overflow: visible !important;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 1rem;
    margin-right: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(25%) sepia(10%) saturate(800%) hue-rotate(185deg) brightness(0.85) contrast(1.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    z-index: 1001;
    transition: opacity 0.2s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    touch-action: manipulation;
}

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

.nav-cta {
    background-color: var(--navy);
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    min-width: 70px;
}

.nav-cta:hover {
    background-color: var(--navy-dark);
    color: white !important;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--cream);
    font-size: 1rem;
}

.dropdown-menu a:hover {
    background-color: var(--navy-dark);
    color: var(--cream);
}

/* Nested Dropdown Menu (Submenu) */
.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: -12rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    }

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Honest Questions Section */
.honest-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
}

.honest-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.honest-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.honest-questions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.honest-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.honest-question-box {
    background-color: var(--navy);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.honest-question-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--navy-dark);
}

.honest-question {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    letter-spacing: -0.01em;
    font-weight: 500;
    margin: 0;
}

.honest-closing {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
    padding: 1.5rem;
    text-align: center;
}

/* Introduction Section */
.intro-section {
    padding: 6rem 2rem;
    background-color: var(--cream);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content.intro-three-column {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-left-column {
    display: flex;
    align-items: flex-start;
}

.intro-featured-text {
    font-size: 3.5rem;
    font-weight: 800;
    font-style: normal;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    }

.intro-middle-column {
    display: flex;
    flex-direction: column;
}

.intro-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.intro-emphasis {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--navy);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--navy);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.cta-button:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Video/Image Carousel Section */
.video-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    text-align: center;
    overflow: hidden;
}

.video-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
}

.image-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.image-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    flex: 0 0 350px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .carousel-overlay {
    transform: translateY(-5px);
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.carousel-link-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    text-decoration: underline;
    margin: 0;
}

/* Main CTA Section */
.main-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    text-align: center;
}

.main-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
}

/* Location Section */
.location-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--camel) 0%, var(--warm-cream) 100%);
    text-align: center;
}

.location-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    }

.location-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.location-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Main Content Section */
.main-content-section {
    padding: 6rem 2rem;
    background-color: var(--warm-cream);
}

.content-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--burgundy);
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 90, 90, 0.1) 0%, rgba(166, 122, 122, 0.1) 100%);
    border-left: 4px solid var(--burgundy);
    border-radius: 4px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

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

.content-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
}

.specializations-box {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--cream) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--camel);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.specializations-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.specializations-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.specializations-list li {
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--navy);
    border-radius: 8px;
    border-left: 4px solid var(--cream);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.specializations-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--navy-dark);
}

.specializations-list li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 1.25rem;
    color: var(--cream);
    font-size: 1.4rem;
    font-weight: bold;
    background-color: rgba(245, 239, 224, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.approach-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.approach-highlight {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 90, 90, 0.1) 0%, rgba(166, 122, 122, 0.1) 100%);
    border-left: 4px solid var(--burgundy);
    border-radius: 4px;
}

/* About Preview Section */
.about-preview-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--camel) 0%, var(--warm-cream) 100%);
    color: var(--text-dark);
}

.about-preview-section .section-heading {
    color: var(--text-dark);
}

.about-preview-section .about-text {
    color: var(--text-color);
    }

.about-preview-section .learn-more-link {
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    }

.about-preview-section .learn-more-link:hover {
    background-color: var(--navy);
    color: var(--cream);
    text-decoration: none;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.learn-more-link {
    display: inline-block;
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--camel) 0%, var(--warm-cream) 100%);
}

.services-section .section-heading {
    color: var(--navy);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    text-align: center;
}

.final-cta-section .cta-heading {
    color: var(--navy);
}

.final-cta-section .cta-text {
    color: var(--text-color);
}

.final-cta-section .cta-button {
    background-color: var(--navy);
}

.final-cta-section .cta-button:hover {
    background-color: var(--navy-dark);
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--camel) 0%, var(--warm-cream) 100%);
    text-align: center;
    color: var(--text-dark);
}

.contact-section .section-heading {
    color: var(--text-dark);
}

.contact-section .contact-text {
    color: var(--text-color);
}

.contact-section .contact-info {
    color: var(--text-color);
}

.contact-section .contact-info a {
    color: var(--navy);
    text-decoration: underline;
}

.contact-section .contact-info a:hover {
    color: var(--burgundy);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
}

.contact-info a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 8rem 2rem 4rem;
    background-color: var(--cream);
    min-height: 100vh;
}

.contact-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-notice {
    background-color: rgba(157, 122, 122, 0.15);
    border-left: 4px solid var(--burgundy);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.emergency-notice strong {
    color: var(--navy);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    background-color: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-method:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-top: 0.25rem;
    min-width: 30px;
}

.contact-method strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.contact-method a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--burgundy);
    text-decoration: underline;
}

.service-availability {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--camel);
}

.service-availability p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.contact-form-section {
    background-color: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--camel);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(61, 74, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    background-color: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Resources Page Styles */
.resources-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    justify-items: center;
}

.resource-item {
    background-color: var(--warm-cream);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    border-left: 4px solid var(--burgundy);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.resource-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--navy);
    background-color: white;
}

.resource-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.resource-item:hover .resource-title {
    color: var(--navy-dark);
}

.resource-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.resource-contact {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 2px solid var(--camel);
    text-align: center;
}

.resource-phone {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 8px;
    border: 2px solid var(--camel);
}

.resource-phone:hover {
    color: var(--burgundy);
    border-color: var(--burgundy);
    text-decoration: none;
}

.resource-text {
    display: inline-block;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 8px;
    border: 2px solid var(--camel);
}

.resource-text strong {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .resources-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 800px;
    }

    .resource-item {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }

    .resource-title {
        font-size: 1.2rem;
    }

    .resource-phone {
        font-size: 1.3rem;
    }

    .resource-text {
        font-size: 1.1rem;
    }

    .resource-text strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .resources-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resource-item {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }

    .resource-title {
        font-size: 1.1rem;
    }

    .resource-description {
        font-size: 0.9rem;
    }
}

/* Booking Section */
.contact-section .booking-section {
    padding: 3rem 0;
    margin: 2rem 0;
    width: 100%;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 800px;
    min-height: 600px;
}

.booking-container > div {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--warm-cream);
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */
@media (max-width: 768px) {
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Main Mobile Menu Container */
    .nav-menu {
        position: absolute; /* Changed to absolute to anchor to navbar bottom */
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start; /* Ensure items stack at top */
        gap: 0; /* Remove desktop gap */
        padding: 0;
        margin: 0;
        list-style: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        overflow-y: auto;
        z-index: 999; /* Behind hamburger if needed */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        max-height: none; /* Remove max-height restriction */
        height: calc(100vh - 70px); /* Auto fit to device height minus navbar */
        padding-bottom: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Menu List Items */
    .nav-menu > li {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    /* Main Menu Links */
    .nav-menu > li > a {
        display: flex;
        align-items: center;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--white);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.2s ease, color 0.2s ease;
        min-height: 56px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        /* Removed touch-action: manipulation to allow proper scrolling */
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a:active {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--cream);
    }

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

    /* CTA Button in Menu */
    .nav-cta {
        margin: 1rem 1.5rem;
        padding: 1.25rem 1.5rem !important;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        border-radius: 8px;
        background-color: var(--cream);
        color: var(--navy) !important;
        border-bottom: none !important;
    }

    .nav-cta:hover,
    .nav-cta:active {
        background-color: var(--warm-cream);
        color: var(--navy-dark) !important;
    }

    /* Dropdown Container */
    .nav-dropdown {
        width: 100%;
    }

    /* Dropdown Toggle Link */
    .dropdown-toggle {
        position: relative;
        padding-right: 1.5rem !important; /* Remove extra padding for arrow */
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    /* Hide dropdown arrow on mobile */
    .dropdown-toggle::after {
        display: none !important;
    }

    .nav-dropdown.active .dropdown-toggle::after {
        display: none !important;
    }

    /* Hide Dropdown Menu on Mobile */
    .dropdown-menu {
        display: none !important;
    }

    .nav-dropdown.active .dropdown-menu {
        display: none !important;
    }

    /* Dropdown Menu Items */
    .dropdown-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    /* Dropdown Menu Links */
    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem 1rem 3rem !important;
        font-size: 0.95rem;
        font-weight: 400;
        color: var(--white) !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background-color 0.2s ease;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        /* touch-action: manipulation removed to allow menu scrolling */
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background-color: rgba(255, 255, 255, 0.05);
    }

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

    /* Dropdown Icons */
    .dropdown-menu a i {
        flex-shrink: 0;
        width: 20px;
        min-width: 20px;
        font-size: 0.9rem;
        text-align: center;
        color: var(--cream) !important;
    }

    /* Prevent Horizontal Scrolling */
    html {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }

    .navbar,
    .nav-container {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Lock Body Scroll When Menu is Open */
    body.menu-open {
        overflow: hidden !important;
        /* Scroll position is saved/restored via JavaScript */
        /* Don't use touch-action: none on body as it prevents menu scrolling */
    }
    
    /* Allow menu to scroll while body is locked */
    body.menu-open .nav-menu.active {
        touch-action: pan-y !important; /* Allow vertical scrolling on menu */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain; /* Prevent scroll chaining */
    }

    .nav-menu.active {
        touch-action: pan-y !important; /* Ensure menu can scroll */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain; /* Prevent scroll chaining */
    }

    .hero-section {
        min-height: 80vh;
        padding: 1rem;
    }

    .hero-content {
        margin-top: -4rem;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

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

    .main-cta-title,
    .content-title,
    .cta-heading,
    .honest-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .honest-questions-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .honest-question-box {
        padding: 1.3rem;
        width: 100%;
        box-sizing: border-box;
    }

    .honest-section {
        padding: 4rem 1rem;
    }

    .honest-content {
        padding: 0;
        width: 100%;
    }

    .honest-question {
        font-size: 1.15rem;
    }

    .intro-content.intro-three-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-featured-text {
        font-size: 2.5rem;
    }

    .honest-closing {
        font-size: 1.4rem;
        padding: 1.3rem;
    }

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

    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Improve form inputs on mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        width: 100%;
        box-sizing: border-box;
    }

    /* Better button spacing */
    .cta-button, button {
        width: 100%;
        max-width: 100%;
        margin: 0.5rem 0;
    }

    /* Improve spacing between sections on mobile */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Better form styling on mobile */
    .contact-form, .blog-email-form {
        padding: 1.5rem;
    }

    /* Improve carousel on mobile */
    .image-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .carousel-track {
        animation: none;
        width: max-content;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
    }

    .carousel-slide {
        scroll-snap-align: start;
        flex: 0 0 280px;
    }

    .image-carousel:hover .carousel-track {
        animation-play-state: initial;
    }

    .hero-section,
    .honest-section,
    .intro-section,
    .main-content-section,
    .approach-section,
    .about-preview-section,
    .services-section,
    .final-cta-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .specializations-box {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .specializations-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .specializations-list li {
        padding: 1.25rem 1.25rem 1.25rem 3rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }

    /* Improve touch targets for mobile */
    button, a, input, textarea, select {
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero-title {
        margin-bottom: 1rem;
    }

    .contact-section .booking-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .booking-container {
        height: 700px;
    }

    .contact-page-section {
        padding: 6rem 1.5rem 3rem;
    }

    .contact-page-title {
        font-size: 2.5rem;
    }

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

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-link {
        gap: 0.5rem;
    }

    /* Better mobile logo sizing */
    .logo-img {
        max-width: 150px;
        height: auto;
    }

    .carousel-slide {
        flex: 0 0 280px;
    }

    .carousel-image {
        height: 320px;
    }

    .video-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.03em;
    }

    .logo-img {
        height: 50px;
        max-width: 200px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-content {
        margin-top: -2rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .honest-title {
        font-size: 2rem;
    }

    .honest-questions-grid {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .honest-question-box {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .honest-question {
        font-size: 1.1rem;
        padding: 1.2rem;
    }

    .honest-section {
        padding: 3rem 1rem;
    }

    .honest-content {
        padding: 0;
        width: 100%;
    }

    .honest-closing {
        font-size: 1.3rem;
        padding: 1.2rem;
    }

    .intro-content.intro-three-column {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-featured-text {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .intro-emphasis {
        font-size: 1.8rem;
    }

    .contact-section .booking-section {
        padding: 1.5rem 0;
        margin: 1rem 0;
    }

    .booking-container {
        height: 600px;
        min-height: 500px;
    }

    .contact-page-section {
        padding: 5rem 1rem 2rem;
    }

    .contact-page-title {
        font-size: 2rem;
    }

    .contact-page-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .carousel-slide {
        flex: 0 0 250px;
    }

    .carousel-image {
        height: 280px;
    }

    .carousel-title {
        font-size: 1.2rem;
    }

    .video-section-title {
        font-size: 1.75rem;
    }

    .specializations-box {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }

    .specializations-list {
        gap: 0.75rem;
    }

    .specializations-list li {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 1rem;
    }

    .specializations-list li::before {
        left: 0.5rem;
        top: 1rem;
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    /* Improve spacing for very small screens */
    .container {
        padding: 0 1rem;
    }

    /* Better text wrapping */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Prevent horizontal scrolling */
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Ensure navigation menu and all its children never exceed viewport */
    .nav-menu,
    .nav-menu > li,
    .nav-menu a,
    .nav-dropdown,
    .dropdown-toggle,
    .dropdown-menu,
    .dropdown-menu li,
    .dropdown-menu a {
        max-width: 100vw !important;
        box-sizing: border-box;
    }

    /* Better table responsiveness if any */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 6rem 2rem 4rem;
    background-color: var(--cream);
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-portrait-container {
    margin: 2rem auto;
    max-width: 300px;
    min-height: 300px;
    background-color: transparent;
    border-radius: 8px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.coming-soon-portrait {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shadow-silhouette {
    width: 200px;
    height: 300px;
    background: var(--navy);
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    opacity: 0.7;
}

.shadow-silhouette::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.8;
}

.shadow-silhouette::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 220px;
    background: var(--navy);
    border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
    opacity: 0.7;
    z-index: -1;
}

.coming-soon-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    padding: 0.5rem 1rem;
    border: 2px solid var(--navy);
    border-radius: 4px;
}

.about-credential-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: var(--warm-cream);
    border-left: 4px solid var(--navy);
    border-radius: 4px;
    max-width: 800px;
    text-align: left;
}

.about-content-section {
    padding: 5rem 2rem;
    background-color: var(--cream);
}

.about-content-section.about-section-alt {
    background-color: var(--warm-cream);
}

.about-content-section .container {
    max-width: 900px;
}

.about-section-title {
        font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--camel);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 900px;
    }

.about-credentials-section {
    padding: 5rem 2rem;
    background-color: var(--warm-cream);
}

.about-credentials-section .container {
    max-width: 1200px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    }

.credentials-column {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
.credentials-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    }

.credentials-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.credentials-list li:last-child {
    margin-bottom: 0;
    }

.credentials-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.3rem;
}

.credentials-list li strong i {
    color: var(--cream);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.about-values-section {
    padding: 5rem 2rem;
    background-color: var(--cream);
}

.about-values-section .container {
    max-width: 900px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--navy);
    border-radius: 8px;
    border: 2px solid var(--cream);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--cream);
    background-color: var(--navy-dark);
    }

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.about-final-cta-section {
    padding: 6rem 2rem;
    background-color: var(--navy-dark);
    color: white;
    text-align: center;
}

.about-cta-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    }

.about-cta-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-subtext {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-final-cta-section .cta-button {
    background-color: var(--cream);
    color: var(--navy);
}

.about-final-cta-section .cta-button:hover {
    background-color: var(--warm-cream);
    color: var(--navy-dark);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 1.75rem;
    }

    .about-cta-heading {
        font-size: 2rem;
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .about-content-section,
    .about-credentials-section,
    .about-values-section,
    .about-final-cta-section {
        padding: 4rem 1.5rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-cta-heading {
        font-size: 1.75rem;
    }

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

    .about-credential-highlight {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

/* Services Page Styles */
/* Services Landing Page */
.services-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    }

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--navy);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    width: 100%;
    max-width: 350px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--cream);
    background-color: var(--navy-dark);
    }

.service-icon {
    width: 80px;
        height: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    }

.service-icon i {
    font-size: 2rem;
    color: var(--navy);
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0 0 1rem 0;
    transition: color 0.3s ease;
}

.service-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--warm-cream);
    margin: 0;
}

.service-card:hover .service-card-title {
    color: var(--cream);
}

.services-page {
    padding: 8rem 2rem 4rem;
    background-color: var(--cream);
    min-height: 100vh;
}

/* Service Detail Pages */
.service-detail-page {
    padding: 5rem 2rem 1rem;
    background-color: var(--cream);
}

.service-detail-content-section {
    padding: 4rem 2rem;
    background-color: var(--cream);
}

.service-detail-page .service-detail-content {
    margin-top: 2rem;
}

.service-video-section {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    padding: 4rem 2rem;
}

.service-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    z-index: -1;
}

.service-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 74, 92, 0.4) 0%, rgba(61, 74, 92, 0.2) 100%);
    z-index: 1;
}

.service-content-over-video {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

.service-detail-content {
    max-width: 900px;
    margin: 2rem auto 3rem;
    background-color: var(--warm-cream);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-detail-content-section .service-detail-content {
    margin-top: 0;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p:last-child {
    margin-bottom: 0;
}

.service-detail-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.training-topics-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 1.5rem;
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.training-topics-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

.training-topics-list li i {
    color: var(--navy);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.adhd-skills-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.adhd-skill-item {
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--cream);
}

.adhd-skill-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 0;
}

.adhd-skill-item ul {
    margin-left: 1.2rem;
    margin-bottom: 0;
}

.adhd-skill-item li {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.adhd-last-item-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.adhd-last-item-container .adhd-skill-item {
    flex: 0 0 auto;
    min-width: 300px;
}

.adhd-closing-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.early-bird-research {
    background-color: var(--navy);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--cream);
    margin-top: 2rem;
}

.early-bird-research p {
    margin-bottom: 0.75rem;
    color: var(--white);
}

.early-bird-research p:last-child {
    margin-bottom: 0;
}

.research-source {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.research-source a {
    color: var(--cream);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.research-source a:hover {
    opacity: 0.8;
}

.mind-snacks-coming-soon {
    text-align: center;
    margin: 2rem 0;
}

.coming-soon-image {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.podcasts-page .coming-soon-image {
    max-width: 200px;
}

.mind-snacks-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mind-snacks-section {
    background-color: var(--navy);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--cream);
}

.mind-snacks-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 0;
}

.mind-snacks-section p {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.mind-snacks-section h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mind-snacks-section h3 a:hover {
    color: var(--cream);
}

/* Books Page Banner */
.books-banner-section {
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.books-banner-image {
    width: 100%;
    max-height: 396px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
}

.books-banner-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    pointer-events: none;
}

/* Books page specific - move title up */
body:has(.books-banner-section) .service-detail-page {
    margin-top: -2rem;
}

/* Podcasts page background */
.podcasts-page {
    background-image: url('headphones.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    margin-top: 70px;
}

.podcasts-page .container {
    position: relative;
    z-index: 1;
}

.podcasts-page .mind-snacks-coming-soon {
    margin-top: 15rem;
}

.podcasts-page .service-detail-content {
    background-color: var(--navy);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.podcasts-page .service-detail-content p {
    color: var(--white);
}

/* Will Make You Smile Page Styles */
.smile-video-container {
    text-align: center;
    margin: 2rem 0;
}

.smile-video {
    max-width: 100%;
    max-height: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.smile-more-note {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 2rem;
    font-style: italic;
}

/* Blog Page Styles */
.blog-hero-section {
    padding: 6rem 2rem 4rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    margin-top: 70px;
}

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

.blog-popcorn-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.popcorn-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-title-container {
    text-align: left;
}

.blog-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.3;
}

.blog-intro-text {
    text-align: left;
}

.blog-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.blog-intro-text p:last-child {
    margin-bottom: 0;
}

.blog-categories-section,
.blog-topics-section,
.blog-search-section,
.blog-articles-section,
.blog-email-section {
    padding: 3rem 2rem;
}

.blog-categories-section {
    background-color: var(--cream);
}

.blog-topics-section {
    background-color: var(--warm-cream);
}

.blog-search-section {
    background-color: var(--cream);
}

.blog-articles-section {
    background-color: var(--warm-cream);
}

.blog-email-section {
    background-color: var(--cream);
}

.blog-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

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

@media (max-width: 768px) {
    .blog-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.blog-category-card {
    background-color: var(--navy);
    color: var(--white);
    padding: 0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.blog-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.blog-category-image-boss {
    object-position: center -1in;
}

.blog-category-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 1.5rem;
    color: var(--white);
    background-color: var(--navy);
    min-height: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-topic-item {
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.blog-topic-item i {
    font-size: 1.2rem;
    color: var(--cream);
}

.blog-topic-item span {
    flex: 1;
}

.blog-topic-item:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

.blog-search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.blog-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--camel);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--navy);
}

.blog-search-button {
    padding: 1rem 1.5rem;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.blog-search-button:hover {
    background-color: var(--navy-dark);
}

.blog-articles-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-article-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--navy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.blog-article-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-article-icon {
    font-size: 1.8rem;
    color: var(--navy);
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-article-item:hover .blog-article-icon {
    color: var(--burgundy);
    transform: scale(1.1);
}

.blog-article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.blog-article-title:hover {
    color: var(--burgundy);
}

.blog-article-content {
    flex: 1;
}

.blog-article-body {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(61, 74, 92, 0.1);
}

.blog-article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.blog-article-body p:last-child {
    margin-bottom: 0;
}

.blog-article-body h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 600;
}

.blog-article-body strong {
    color: var(--navy);
    font-weight: 600;
}

.blog-read-more {
    margin-top: 1rem;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    padding: 0;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--burgundy);
}

.blog-load-more {
    text-align: center;
    margin-top: 3rem;
}

.blog-load-more-button {
    padding: 1rem 3rem;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.blog-load-more-button:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

.blog-email-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-form-group {
    margin-bottom: 1.5rem;
}

.blog-form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.blog-form-input,
.blog-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--camel);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.blog-form-input:focus,
.blog-form-select:focus {
    outline: none;
    border-color: var(--navy);
}

.blog-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.blog-checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.blog-submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.blog-submit-button:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Blog Page Responsive Styles */
@media (max-width: 768px) {
    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-popcorn-image {
        order: -1;
        padding: 0;
    }

    .popcorn-img {
        max-width: 150px;
    }

    .blog-title-container {
        text-align: center;
    }

    .blog-main-title {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1.8rem;
    }

    .blog-intro-text {
        text-align: center;
    }

    .blog-intro-text p {
        font-size: 1rem;
    }

    .blog-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-topics-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .blog-topic-item {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .blog-category-card {
        min-height: 44px; /* Touch-friendly */
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .blog-section-title {
        font-size: 1.5rem;
    }

    .blog-article-item {
        padding: 1.25rem;
        box-sizing: border-box;
    }

    .blog-email-form {
        padding: 1.5rem;
    }

    /* Blog Article Body Mobile Styles */
    .blog-article-body {
        padding: 1rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .blog-article-body p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .blog-article-body h5 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Make images stack on mobile instead of floating */
    .blog-article-body img {
        float: none !important;
        display: block;
        max-width: 100% !important;
        width: 100% !important;
        margin: 1.5rem auto !important;
        clear: both;
        height: auto;
        box-sizing: border-box;
    }

    .blog-article-item {
        padding: 1.25rem;
        box-sizing: border-box;
    }

    .blog-article-title {
        font-size: 1.1rem;
        line-height: 1.4;
        padding: 0.75rem 0;
        min-height: 44px; /* Touch-friendly */
        display: flex;
        align-items: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }

    /* Blog Post Page Mobile Styles */
    .blog-hero-section {
        padding: 2rem 1rem;
    }

    .blog-articles-section {
        padding: 2rem 1rem;
    }

    .blog-articles-list {
        padding: 0;
    }

    /* Back to Blog Button Mobile */
    .back-to-blog-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        width: auto;
        max-width: 100%;
        margin: 1.5rem auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    /* Improve container padding on mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Ensure blog sections don't overflow */
    .blog-categories-section,
    .blog-topics-section,
    .blog-search-section,
    .blog-articles-section,
    .blog-email-section {
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .blog-main-title {
        font-size: 2rem;
    }

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

    .blog-article-body p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .blog-article-body h5 {
        font-size: 1.1rem;
    }

    .blog-article-title {
        font-size: 1rem;
    }

    .blog-article-item {
        padding: 1rem;
    }

    .blog-article-title {
        font-size: 1rem;
        padding: 0.625rem 0;
    }

    .blog-hero-section {
        padding: 1.5rem 1rem;
    }

    .blog-articles-section {
        padding: 1.5rem 1rem;
    }

    .back-to-blog-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .blog-topic-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .blog-search-button {
        min-height: 44px;
        touch-action: manipulation;
    }
}

.workplace-subsection {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--camel);
}

.workplace-subsection:first-of-type {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

.service-cta {
    text-align: center;
    margin-top: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-section {
    margin-bottom: 2rem;
    background-color: var(--warm-cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: var(--navy);
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--navy-dark);
}

.accordion-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

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

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    background-color: var(--cream);
}

.accordion-content.scrollable-content {
    max-height: 600px;
    overflow-y: auto;
    padding: 2rem;
}

.accordion-content.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.accordion-content.scrollable-content::-webkit-scrollbar-track {
    background: var(--warm-cream);
    border-radius: 4px;
}

.accordion-content.scrollable-content::-webkit-scrollbar-thumb {
    background: var(--camel);
    border-radius: 4px;
}

.accordion-content.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: var(--navy-light);
}

.service-content-wrapper {
    padding-right: 1rem;
}

.service-content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.service-content-wrapper h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Responsive Styles for Services Page */
@media (max-width: 768px) {
    .services-page {
        padding: 6rem 1.5rem 3rem;
}

    .services-intro {
    font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .service-card-title {
        font-size: 1.2rem;
    }

    .service-card-description {
        font-size: 0.95rem;
}

    .page-title {
        font-size: 2rem;
    }

    .service-detail-content-section {
        padding: 3rem 1.5rem;
    }

    .service-video-section {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }

    .service-detail-page {
        padding: 4rem 1.5rem 0.75rem;
    }

    .service-detail-title {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .service-detail-content {
        padding: 2.5rem 2rem;
    }

    .service-detail-content h2 {
        font-size: 1.75rem;
    }

    .service-detail-content h3 {
        font-size: 1.3rem;
}

    .accordion-header {
        padding: 1.2rem 1.5rem;
    }

    .accordion-header h2 {
    font-size: 1.5rem;
    }

    .accordion-content.scrollable-content {
        max-height: 500px;
        padding: 1.5rem;
    }

    .service-content-wrapper h3 {
        font-size: 1.3rem;
    }

    .service-content-wrapper h4 {
        font-size: 1.2rem;
    margin-top: 1.5rem;
    }

    .service-content-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-page {
        padding: 5rem 1rem 2rem;
    }

    .services-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    margin-bottom: 1rem;
}

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .service-card-description {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .service-detail-content-section {
        padding: 2.5rem 1rem;
    }

    .service-video-section {
        min-height: 45vh;
        padding: 2.5rem 1rem;
    }

    .service-content-over-video {
        padding: 2rem 1.5rem;
    }

    .service-detail-page {
        padding: 3.5rem 1rem 0.5rem;
    }

    .service-detail-title {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .service-detail-content {
        padding: 2rem 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .service-detail-content p {
        font-size: 1rem;
    }

    .training-topics-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }

    .adhd-skills-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .adhd-skill-item {
        padding: 1.2rem;
    }

    .adhd-skill-item h4 {
        font-size: 1.1rem;
    }

    .adhd-last-item-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .adhd-last-item-container .adhd-skill-item {
        min-width: 100%;
    }

    .adhd-closing-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .training-topics-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mind-snacks-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mind-snacks-section {
        padding: 1.5rem;
    }

    .mind-snacks-section h3 {
        font-size: 1.3rem;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-header h2 {
        font-size: 1.3rem;
    }

    .accordion-content.scrollable-content {
        max-height: 400px;
        padding: 1rem;
    }
}

/* FAQ Page Styles */
.faq-page {
    padding: 8rem 2rem 4rem;
    background-color: var(--cream);
    min-height: 100vh;
}

.faq-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-of-type {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--camel);
}

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question-btn:hover {
    background-color: var(--navy-dark);
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-question-btn[aria-expanded="true"] + .faq-answer-content {
    max-height: 2000px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1rem;
}

.faq-answer:last-child {
    margin-bottom: 0;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.faq-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

.faq-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cream);
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-answer a {
    color: var(--cream);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--white);
}

.cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--warm-cream);
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.link-button {
    color: var(--navy);
    text-decoration: underline;
    font-weight: 600;
}

.link-button:hover {
    color: var(--navy-dark);
}

/* Responsive Styles for FAQ Page */
@media (max-width: 768px) {
    .faq-page {
        padding: 6rem 1.5rem 3rem;
    }

    .faq-main-title {
        font-size: 2.5rem;
    }

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

    .faq-question-text {
        font-size: 1.1rem;
    }

    .faq-question-btn {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem;
    }

    .faq-question-btn[aria-expanded="true"] + .faq-answer-content {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding: 5rem 1rem 2rem;
    }

    .faq-main-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-question-btn {
        padding: 1rem;
    }

    .faq-answer-content {
        padding: 0 1rem;
    }

    .faq-question-btn[aria-expanded="true"] + .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .faq-category {
        margin-bottom: 2.5rem;
    }

    .faq-category-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-category {
        margin-bottom: 2rem;
    }

    .faq-category-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Investment Page Styles */
.investment-hero-section {
    position: relative;
    min-height: 60vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.investment-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.investment-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--camel) 100%);
    z-index: -1;
}

.investment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 74, 92, 0.5) 0%, rgba(61, 74, 92, 0.3) 100%);
    z-index: 1;
}

.investment-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.investment-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.investment-hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.investment-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.investment-content-section {
    padding: 4rem 2rem;
    background-color: var(--cream);
}

.investment-transparency-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: var(--warm-cream);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--navy);
}

.transparency-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.transparency-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.investment-pricing-card {
    max-width: 600px;
    margin: 0 auto 4rem;
    background-color: var(--navy);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid var(--cream);
}

.pricing-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 700;
    margin: 1rem 0;
    color: white;
}

.pricing-duration {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pricing-details {
    padding: 2.5rem;
    background-color: var(--navy);
}

.pricing-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
    opacity: 0.9;
}

.pricing-highlight {
    background-color: rgba(245, 239, 224, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--cream);
    margin-top: 1.5rem;
}

.pricing-highlight strong {
    color: var(--white);
}

.investment-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.investment-card {
    background-color: var(--navy);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--cream);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-top-color: var(--cream);
    background-color: var(--navy-dark);
}

.investment-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.investment-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.investment-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.investment-feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

.investment-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cream);
    font-size: 1.2rem;
    font-weight: bold;
}

.investment-link-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.investment-link-button:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

.investment-cancellation-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: var(--warm-cream);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--navy);
}

.investment-cancellation-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--camel);
}

.investment-cancellation-content {
    max-width: 800px;
    margin: 0 auto;
}

.investment-cancellation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.investment-cancellation-text:last-child {
    margin-bottom: 0;
}

.investment-questions-section {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background-color: var(--warm-cream);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

.investment-questions-title {
        font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    }

.investment-questions-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    }

/* Responsive Styles for Investment Page */
@media (max-width: 768px) {
    .investment-hero-section {
        padding: 3rem 1.5rem;
        min-height: 50vh;
        max-height: 500px;
    }

    .investment-hero-title {
        font-size: 2.5rem;
    }

    .investment-hero-subtitle {
        font-size: 1.75rem;
    }

    .investment-hero-text {
        font-size: 1.1rem;
    }

    .investment-content-section {
        padding: 3rem 1.5rem;
    }

    .investment-transparency-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .transparency-title {
        font-size: 1.5rem;
    }

    .transparency-text {
        font-size: 1rem;
}

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

    .investment-sections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investment-card {
        padding: 2rem;
}

    .investment-cancellation-section {
        padding: 2rem 1.5rem;
        margin: 3rem auto;
}

    .investment-cancellation-title {
        font-size: 1.75rem;
    }

    .investment-questions-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .investment-hero-section {
        padding: 2rem 1rem;
        min-height: 40vh;
        max-height: 400px;
}

    .investment-hero-title {
        font-size: 2rem;
    }

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

    .pricing-header {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-details {
        padding: 2rem 1.5rem;
    }

    .investment-card {
        padding: 1.5rem;
    }

    .investment-card-title {
        font-size: 1.3rem;
}

    .investment-transparency-section {
        padding: 1.5rem 1rem;
}

    .transparency-title {
        font-size: 1.3rem;
    }

    .investment-cancellation-section {
        padding: 2rem 1rem;
}

    .investment-cancellation-title {
        font-size: 1.5rem;
}

    .investment-cancellation-text {
        font-size: 1rem;
}

    .investment-questions-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
