/* FEWF Website Styles - Brand Colors */

:root {
    --brand-pink: #D8588F;
    --brand-blue: #A9DAFF;
    --brand-grey: #5A5A5A;
    --brand-green: #21897E;
    --brand-brown: #6C3E3E;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
}

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

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--brand-grey);
    background-color: var(--light-grey);
}

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

.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--brand-pink);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    max-width: 150px;
    height: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: var(--brand-grey);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 11px 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: var(--brand-pink);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-pink);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}


.main-content {
    padding: 40px 0;
}

.hero {
    text-align: center;
    padding: 0;
    background: var(--brand-blue);
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    width: 100%;
    z-index: 0;
}

.hero-banner picture {
    width: 100%;
    display: block;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: contain;
}

/* Mobile banner at 768px breakpoint */
@media (max-width: 768px) {
    .hero-banner picture {
        width: 100%;
        display: block;
    }
    
    .hero-banner-image {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--brand-pink) 0%, transparent 50%, var(--brand-brown) 100%);
    opacity: 0.1;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Decorative graphics around the banner */
.hero .decorative-top-left {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: url('assets/images/graphics/decorative-element-1.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

.hero .decorative-top-right {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: url('assets/images/graphics/decorative-element-2.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

.hero .decorative-bottom-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: url('assets/images/graphics/decorative-element-3.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

.hero .decorative-bottom-right {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: url('assets/images/graphics/decorative-element-4.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero h1 br:first-child {
    display: block;
}

.hero h1::first-line {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 2.1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Services Section */
.services-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.services-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ensure side-by-side layout on larger screens */
@media (min-width: 601px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
        display: grid !important;
    }
}

.service-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--brand-green);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-button {
    display: inline-block;
    text-decoration: none;
    background: var(--brand-pink);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 88, 143, 0.3);
    pointer-events: none;
}

.service-card:hover .service-button {
    background: var(--brand-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 62, 62, 0.4);
}

.section {
    background: var(--white);
    padding: 40px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--brand-pink);
}

.section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 2px solid var(--brand-blue);
    padding-bottom: 10px;
    font-weight: 600;
}

.section p {
    color: var(--brand-grey);
    margin-bottom: 15px;
}

.section:nth-child(even) {
    border-left-color: var(--brand-green);
}

.section:nth-child(even) h2 {
    border-bottom-color: var(--brand-brown);
}

/* Add some accent elements */
.hero::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--brand-green);
}

/* Footer Styles */
.footer {
    background: var(--brand-grey);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-section h3 {
    color: var(--brand-pink);
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--brand-blue);
    padding-bottom: 5px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: var(--brand-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-links a svg {
    fill: #333;
    transition: fill 0.3s ease;
}

.social-links a:hover {
    background: #333;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #333;
}

.social-links a:hover svg {
    fill: white;
}

.footer-bottom {
    border-top: 1px solid var(--brand-brown);
    padding-top: 20px;
    color: var(--brand-blue);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .social-links {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .hero {
        min-height: 200px;
    }
    
    .hero-banner-image {
        max-height: 250px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Hide decorative elements on mobile for cleaner look */
    .hero .decorative-top-left,
    .hero .decorative-top-right,
    .hero .decorative-bottom-left,
    .hero .decorative-bottom-right {
        display: none;
    }
}

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--brand-grey);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .header-content {
        position: relative;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--light-grey);
    }
    
    .nav-list a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
        width: 100%;
        text-align: left;
    }
    
    .nav-list a:hover {
        background: var(--light-grey);
        color: var(--brand-pink);
    }
    
    .logo {
        max-width: 120px;
    }
    
    .section {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-section {
        padding: 30px 20px;
    }
    
    .services-section h2 {
        font-size: 1.8rem;
    }
    
    .service-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 250px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .hero-banner-image {
        max-height: 200px;
    }
    
    .services-section h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .benefits-header h2 {
        font-size: 1.6rem;
    }
    
    .benefits-header p {
        font-size: 0.95rem;
    }
    
    .gallery-content h3 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
    
    .testimonials-content h2 {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .reviews-header h3 {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Newsletter Modal Styles */
.newsletter-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.newsletter-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.newsletter-modal-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.newsletter-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand-grey);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.newsletter-modal-close:hover {
    color: var(--brand-pink);
}

.newsletter-form-container {
    margin-top: 20px;
}

/* Mobile styles for newsletter modal */
@media (max-width: 768px) {
    .newsletter-modal.active {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .newsletter-modal-content {
        padding: 20px;
        max-height: 95vh;
    }
    
    .newsletter-modal-close {
        top: 10px;
        right: 15px;
        font-size: 1.8rem;
    }
    
    .newsletter-form-container iframe {
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    .newsletter-modal-content {
        padding: 15px;
        border-radius: 8px;
    }
    
    .newsletter-form-container iframe {
        height: 450px !important;
    }
}

/* Social Proof Section */
.social-proof-section {
    background: var(--white);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.cert-logo {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.cert-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.empty-stat {
    background: var(--light-grey);
    border: 2px solid var(--brand-green);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.proud-member-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-logos-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.cert-logo-inline {
    max-height: 96px;
    max-width: 192px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.cert-logo-inline:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.cert-logo-uscc {
    max-height: 120px;
    max-width: 240px;
}

.social-proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.truck-showcase {
    text-align: center;
}

.truck-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.truck-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 10px;
    border: 2px solid var(--brand-green);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--brand-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-pink);
}

.testimonials-content h2 .customer-logos {
    margin-top: 20px;
    margin-bottom: 0;
}

.testimonials-content h2 .logos-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.customer-logos {
    text-align: center;
    margin-bottom: 40px;
}

.logos-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.google-reviews {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-pink);
}

.reviews-header {
    text-align: center;
    margin-bottom: 25px;
}

.reviews-header h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--brand-grey);
    font-weight: 600;
    font-size: 1rem;
}

.review-quotes {
    margin-bottom: 25px;
}

.review-quote {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--brand-blue);
    font-style: italic;
    color: var(--brand-grey);
    line-height: 1.6;
}

.review-quote:last-child {
    margin-bottom: 0;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-pink);
    color: var(--brand-grey);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 88, 143, 0.3);
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 200px;
}

.google-reviews-button:hover {
    background: var(--brand-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 62, 62, 0.4);
}

.google-reviews-button svg {
    flex-shrink: 0;
}

/* Mobile Responsive for Social Proof */
@media (max-width: 768px) {
    .social-proof-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-proof-section {
        padding: 40px 20px;
    }
    
    .truck-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .empty-stat {
        padding: 30px 15px;
        min-height: auto;
    }
    
    .proud-member-text {
        font-size: 1rem;
    }
    
    .certification-logos-inline {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .cert-logo-inline {
        max-height: 60px;
        max-width: 120px;
    }
    
    .cert-logo-uscc {
        max-height: 70px;
        max-width: 140px;
    }
    
    .testimonials-content h2 {
        font-size: 1.4rem;
        padding: 20px;
    }
    
    .testimonials-content h2 .logos-image {
        max-width: 100%;
        width: 100%;
    }
    
    .google-reviews {
        padding: 20px;
    }
    
    .review-quote {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .google-reviews-button {
        width: 100%;
        max-width: 100%;
    }
}

/* Key Benefits Carousel Styles */
.key-benefits-section {
    background: var(--white);
    padding: 60px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.benefits-header h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--brand-grey);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Gallery Styles */
.benefits-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

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

.gallery-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.benefit-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover .benefit-thumb {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: white;
}

.gallery-content {
    padding: 25px;
    text-align: center;
}

.gallery-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-content p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.6;
    margin: 0;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--brand-grey);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--brand-pink);
}

.lightbox-img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 30px;
    text-align: center;
}

.lightbox-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.lightbox-info p {
    font-size: 1.2rem;
    color: var(--brand-grey);
    line-height: 1.6;
    margin: 0;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: var(--brand-pink);
    color: var(--brand-grey);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 88, 143, 0.3);
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--brand-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 62, 62, 0.4);
}

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

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .key-benefits-section {
        padding: 40px 20px;
    }
    
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefits-header p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .gallery-thumbnail {
        height: 200px;
    }
    
    .gallery-content {
        padding: 20px;
    }
    
    .gallery-content h3 {
        font-size: 1.3rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-img {
        max-height: 50vh;
    }
    
    .lightbox-info {
        padding: 20px;
    }
    
    .lightbox-info h3 {
        font-size: 1.5rem;
    }
    
    .lightbox-info p {
        font-size: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Resources Section Styles */
.resources-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    padding: 80px 40px;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(216, 88, 143, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.resources-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.resources-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-green));
    border-radius: 2px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Force the last two items to be on the second row */
.resource-square:nth-child(4),
.resource-square:nth-child(5) {
    grid-column: span 1;
}

/* Center the bottom two blocks under the imaginary lines between top blocks */
.resource-square:nth-child(4) {
    grid-column: 1;
    justify-self: end;
    transform: translateX(50%);
}

.resource-square:nth-child(5) {
    grid-column: 2;
    justify-self: end;
    transform: translateX(50%);
}

/* Fix hover positioning for transformed bottom blocks */
.resource-square:nth-child(4):hover,
.resource-square:nth-child(5):hover {
    transform: translateX(50%) translateY(-8px) scale(1.02);
}

.resource-square {
    background: linear-gradient(145deg, var(--white) 0%, var(--light-grey) 100%);
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: 100%;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    display: block;
}

a.resource-square {
    text-decoration: none;
    color: inherit;
}

.resource-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue), var(--brand-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-square:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--brand-green);
}

.resource-square:hover::before {
    opacity: 1;
}

.resource-square h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.resource-square p {
    color: var(--brand-grey);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.resource-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.resource-square:hover .resource-icon {
    transform: scale(1.05);
}

/* Resource Subcategories Hover/Tap System */
.resource-square {
    position: relative;
    overflow: visible;
}

.newsletter-resource {
    cursor: pointer;
}

.resource-subcategories {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border: 2px solid var(--brand-green);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resource-square:hover .resource-subcategories {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    pointer-events: auto;
}

/* Hover overlay effect */
.resource-square:hover {
    transform: translateY(-5px);
}

.expand-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: var(--brand-blue);
    color: var(--brand-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-square:hover .expand-indicator {
    background: var(--brand-green);
    transform: rotate(45deg);
}

.subcategory-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-grey);
    transition: all 0.3s ease;
    cursor: pointer;
}

.subcategory-item:last-child {
    border-bottom: none;
}

.subcategory-item:hover {
    background: var(--light-grey);
    padding-left: 8px;
}

.subcategory-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.subcategory-icon-img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    object-fit: contain;
}

.subcategory-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.subcategory-text {
    font-size: 0.9rem;
    color: var(--brand-grey);
    font-weight: 600;
    margin-bottom: 2px;
}

.subcategory-desc {
    font-size: 0.8rem;
    color: var(--brand-grey);
    opacity: 0.7;
    font-weight: 400;
}

/* Mobile Tap System */
@media (max-width: 768px) {
    .resource-subcategories {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        border: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    
    .resource-square.active .resource-subcategories {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
        padding: 15px;
        border: 2px solid var(--brand-green);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .expand-indicator {
        display: flex;
    }
    
    .resource-square:hover .resource-subcategories {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }
}

/* FAQ Cards Styling */
.faq-cards {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--white);
    border: 2px solid var(--brand-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-card-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    width: 30px;
    text-align: center;
}

.faq-card-icon-img {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    object-fit: contain;
}

.faq-card-content {
    flex: 1;
}

.faq-card-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-grey);
    margin: 0 0 2px 0;
}

.faq-card-content p {
    font-size: 0.8rem;
    color: var(--brand-grey);
    opacity: 0.7;
    margin: 0;
}

/* FAQ Accordion Styling */
.faq-accordion {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-section {
    border: 1px solid var(--brand-blue);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section:hover {
    border-color: var(--brand-green);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--brand-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-header:hover {
    background: var(--brand-green);
}

.faq-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-grey);
    flex: 1;
}

.faq-count {
    font-size: 0.8rem;
    color: var(--brand-grey);
    opacity: 0.8;
    font-weight: 500;
    margin-right: 10px;
}

.faq-toggle {
    font-size: 0.8rem;
    color: var(--brand-grey);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-section:hover .faq-toggle {
    transform: rotate(180deg);
}

/* FAQ Categories Styling */
.faq-categories {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--brand-blue);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-category:hover {
    background: var(--brand-green);
    transform: translateX(3px);
}

.category-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-grey);
}

.question-count {
    font-size: 0.8rem;
    color: var(--brand-grey);
    opacity: 0.8;
    font-weight: 500;
}

/* Responsive Design for Resources */
@media (max-width: 768px) {
    .resources-section {
        padding: 40px 20px;
    }
    
    .resources-section h2 {
        font-size: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-square {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
        justify-self: center;
        padding: 30px 20px;
    }
    
    /* Reset the positioning for mobile */
    .resource-square:nth-child(4),
    .resource-square:nth-child(5) {
        justify-self: center;
        margin: 0 auto 20px auto;
        transform: none;
    }
    
    .resource-square:nth-child(4):hover,
    .resource-square:nth-child(5):hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .resource-icon {
        width: 80px;
        height: 80px;
    }
    
    .resource-square h3 {
        font-size: 1.3rem;
    }
    
    .resource-square p {
        font-size: 0.95rem;
    }
    
    .resources-decoration {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (max-width: 480px) {
    .resources-grid {
        gap: 15px;
    }
    
    .resource-square {
        padding: 25px 15px;
    }
    
    .resource-square h3 {
        font-size: 1.2rem;
    }
    
    .resource-square p {
        font-size: 0.9rem;
    }
    
    .resources-section h2 {
        font-size: 1.6rem;
    }
    
    .subcategory-item {
        padding: 10px 0;
    }
    
    .subcategory-text {
        font-size: 0.85rem;
    }
    
    .subcategory-desc {
        font-size: 0.75rem;
    }
}

.resources-decoration {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-left: -40px;
    margin-right: -40px;
    overflow: hidden;
}

.element-row-large {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    margin-bottom: -2mm;
}

/* Commercial Page Styles */

/* Commercial Hero Section */
.commercial-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-pink) 100%);
    padding: 60px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    color: var(--white);
}

.commercial-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.commercial-hero .hero-text {
    flex: 1;
    text-align: left;
}

.commercial-hero .hero-image {
    flex: 1;
}

.commercial-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: cover;
}

.commercial-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.commercial-hero .hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.8;
}

.commercial-hero .hero-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.commercial-hero .hero-link:hover {
    color: var(--brand-brown);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: var(--brand-pink);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(216, 88, 143, 0.3);
}

.cta-primary:hover {
    background: var(--brand-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 62, 62, 0.4);
}

.cta-secondary {
    background: var(--white);
    color: var(--brand-grey);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Section Title */
.section-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Authority & Proof Section */
.authority-proof-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.partner-logos-strip {
    margin: 40px 0;
    text-align: center;
    padding: 30px 20px;
}

.logos-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 150px;
    min-height: 100px;
}

.partner-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    max-width: 200px;
    max-height: 120px;
    min-width: 100px;
    min-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments for partner logos */
@media (max-width: 768px) {
    .logos-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .partner-logo-item {
        padding: 12px;
    }
    
    .partner-logo {
        max-width: 150px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        max-width: 120px;
        max-height: 70px;
    }
    
    .logos-grid {
        gap: 15px;
    }
}

.proof-statistics {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 12px;
}

.proof-statistics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-highlight {
    text-align: center;
}

.proof-statistics-image {
    text-align: center;
}

.miami-heat-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Responsive adjustments for proof statistics */
@media (max-width: 768px) {
    .proof-statistics-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proof-statistics {
        padding: 20px;
    }
    
    .miami-heat-image {
        max-width: 100%;
    }
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 1rem;
    color: var(--brand-grey);
    margin-top: 15px;
}

.stat-link {
    color: var(--brand-pink);
    text-decoration: underline;
    font-weight: 600;
}

.stat-link:hover {
    color: var(--brand-brown);
}

.press-awards {
    margin: 40px 0;
    text-align: center;
}

.press-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.press-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.press-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.press-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.press-label {
    font-size: 0.9rem;
    color: var(--brand-grey);
    font-weight: 600;
}

.commercial-testimonial {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 12px;
    border-left: 4px solid var(--brand-pink);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brand-grey);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: var(--brand-grey);
    font-weight: 600;
    font-style: normal;
}

.case-studies-link {
    text-align: center;
    margin-top: 30px;
}

.case-studies-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.case-study-item {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--brand-grey);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--brand-green);
    text-decoration: none;
    color: var(--brand-grey);
}

.case-study-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.case-study-item p {
    font-size: 0.95rem;
    color: var(--brand-grey);
    line-height: 1.6;
    margin: 0;
}

.case-studies-cta {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.case-studies-cta:hover {
    color: var(--brand-brown);
}

/* Service Benefits Section */
.service-benefits-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-block {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--brand-green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-block h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-pink);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-block p {
    color: var(--brand-grey);
    line-height: 1.6;
    font-size: 1rem;
}

.mid-page-cta {
    text-align: center;
    margin-top: 40px;
}

/* Reporting Section */
.reporting-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.reporting-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.reporting-block {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-blue);
    transition: all 0.3s ease;
}

.reporting-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left-color: var(--brand-green);
}

.reporting-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.reporting-block p {
    color: var(--brand-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reporting-features {
    list-style: none;
    padding: 0;
}

.reporting-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--brand-grey);
}

.reporting-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.b2g-cta {
    text-align: center;
    margin-top: 30px;
}

/* Commercial FAQ Section */
.commercial-faq-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-item {
    background: var(--light-grey);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-blue);
}

.faq-item.active {
    border-color: var(--brand-green);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-grey);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-pink);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: var(--brand-grey);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--brand-pink);
    text-decoration: underline;
    font-weight: 600;
}

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

/* FAQ Hero Section */
.faq-hero-section {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    color: var(--white);
    margin-bottom: 40px;
    border-radius: 15px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Section Titles */
.faq-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--brand-pink);
}

/* Quote Form Section */
.quote-form-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--brand-grey);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--brand-blue);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--brand-grey);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(33, 137, 126, 0.1);
}

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

.form-submit {
    width: 100%;
    margin-top: 10px;
}

/* Mobile Responsive for Commercial Page */
@media (max-width: 768px) {
    .commercial-hero {
        padding: 40px 20px;
    }
    
    .commercial-hero .hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .commercial-hero .hero-text {
        text-align: center;
    }
    
    .commercial-hero h1 {
        font-size: 1.8rem;
    }
    
    .commercial-hero .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .authority-proof-section,
    .service-benefits-section,
    .reporting-section,
    .commercial-faq-section,
    .quote-form-section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-hero-section {
        padding: 40px 20px 30px;
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .faq-section-title {
        font-size: 1.5rem;
    }
    
    .benefits-grid,
    .reporting-blocks,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .press-logos {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Residential Page Specific Styles */
.map-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container {
    margin: 30px 0;
}

.map-embed {
    width: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.hub-locations-highlight {
    margin: 40px 0;
}

.hub-locations-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.hub-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.hub-location-item {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-green);
}

.hub-location-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hub-location-item p {
    font-size: 0.95rem;
    color: var(--brand-grey);
    margin-bottom: 8px;
    line-height: 1.6;
}

.map-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.value-education-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-block {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
}

.value-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-block p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.8;
}

.residential-testimonial {
    margin-top: 15px;
}

.dr-sobel-feature {
    margin-top: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--brand-pink);
}

.dr-sobel-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brand-grey);
    margin-bottom: 15px;
    line-height: 1.8;
}

.dr-sobel-link {
    font-size: 0.95rem;
}

.dr-sobel-link a {
    color: var(--brand-pink);
    text-decoration: underline;
    font-weight: 600;
}

.dr-sobel-link a:hover {
    color: var(--brand-brown);
}

.impact-metric {
    text-align: center;
    margin-top: 15px;
}

.get-involved-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.get-involved-content {
    max-width: 700px;
    margin: 0 auto;
}

.get-involved-content p {
    font-size: 1.1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 30px;
}

.get-involved-cta {
    margin-top: 25px;
}

/* Community Compost Collections Section */
.community-compost-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.intro-text {
    margin: 30px 0 40px 0;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--brand-grey);
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.compost-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--brand-green);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.location-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* Desktop: Make location images at least twice as big */
@media (min-width: 769px) {
    .location-image {
        max-width: 520px;
    }
}

.location-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-card p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.7;
    margin: 0;
}

.location-card strong {
    color: var(--brand-green);
    font-weight: 600;
}

.everglades-cycle-card {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-blue) 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--white);
}

.cycle-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.everglades-cycle-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--white);
}

.everglades-cycle-card strong {
    font-weight: 700;
    color: var(--white);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.feature-list li {
    font-size: 1rem;
    line-height: 1.6;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stay-tuned {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    font-style: italic;
}

.volunteer-option-card {
    background: var(--light-grey);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
    border-left: 5px solid var(--brand-pink);
    transition: all 0.3s ease;
}

.volunteer-option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.volunteer-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.volunteer-option-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.volunteer-option-card p {
    font-size: 1.1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin: 0;
}

.volunteer-option-card strong {
    color: var(--brand-pink);
    font-weight: 600;
}

/* Mobile Responsive for Community Compost Section */
@media (max-width: 768px) {
    .community-compost-section {
        padding: 30px 20px;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .compost-locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .everglades-cycle-card {
        padding: 30px 20px;
    }
    
    .cycle-header h3 {
        font-size: 1.5rem;
    }
    
    .everglades-cycle-card p {
        font-size: 1rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .volunteer-option-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .lead-text {
        font-size: 1rem;
    }
    
    .location-card,
    .everglades-cycle-card,
    .volunteer-option-card {
        padding: 20px 15px;
    }
    
    .cycle-header h3 {
        font-size: 1.3rem;
    }
}

.newsletter-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile Responsive for Residential Page */
@media (max-width: 768px) {
    .map-section,
    .value-education-section,
    .get-involved-section,
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .map-embed {
        min-height: 300px;
    }
    
    .hub-locations-grid,
    .value-blocks {
        grid-template-columns: 1fr;
    }
    
    .map-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-ctas .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Get Involved Page Specific Styles */
.involvement-pathway-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pathway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
    align-items: start;
}

.pathway-text h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.pathway-text p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.opportunities-list,
.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.opportunities-list li,
.benefits-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.6;
}

.opportunities-list li::before,
.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.volunteer-requirements,
.volunteer-schedule {
    background: var(--light-grey);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.volunteer-requirements h3,
.volunteer-schedule h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.volunteer-requirements ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.volunteer-requirements li {
    margin-bottom: 8px;
}

.volunteer-photos,
.hub-host-photo,
.workshop-photo {
    margin-top: 20px;
}

.photo-carousel,
.photo-placeholder {
    width: 100%;
}

.volunteer-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block;
    object-fit: cover;
}

.volunteer-testimonial,
.hub-host-testimonial,
.workshop-testimonial {
    margin: 30px 0;
}

.testimonial-section-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.pathway-cta,
.workshops-cta {
    text-align: center;
    margin-top: 30px;
}

.partnership-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.partnership-block {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
}

.partnership-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 0;
}

.partnership-block ul {
    list-style: disc;
    padding-left: 25px;
}

.partnership-block li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.workshops-tours-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.workshops-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
    align-items: start;
}

.workshops-text h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.workshops-text p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.workshop-type {
    margin-top: 25px;
}

.workshop-type ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.workshop-type li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.community-engagement-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.newsletter-engagement,
.social-engagement {
    text-align: center;
}

.newsletter-engagement h3,
.social-engagement h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-engagement p,
.social-engagement p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

.newsletter-engagement .newsletter-form {
    max-width: 100%;
}

.newsletter-engagement .form-group {
    margin-bottom: 15px;
}

.social-engagement-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-engagement-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brand-grey);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-blue);
}

.social-engagement-link:hover {
    background: var(--light-grey);
    border-color: var(--brand-green);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--brand-grey);
}

.social-engagement-link svg {
    color: var(--brand-pink);
}

.social-engagement-link span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile Responsive for Get Involved Page */
@media (max-width: 768px) {
    .involvement-pathway-section,
    .workshops-tours-section,
    .community-engagement-section {
        padding: 30px 20px;
    }
    
    .pathway-content,
    .workshops-content,
    .engagement-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partnership-details {
        grid-template-columns: 1fr;
    }
    
    .social-engagement-icons {
        gap: 15px;
    }
    
    .social-engagement-link {
        padding: 12px;
    }
}

/* About Page Specific Styles */
.about-hero-banner {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-image {
    width: 100%;
}

.compost-team-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}

.about-hero-text {
    display: flex;
    align-items: center;
}

.about-hero-text p {
    font-size: 1.1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin: 0;
}

.hero-story-content {
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.hero-story-content p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-expertise-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
    align-items: start;
}

.team-text p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

.dr-sobel-feature-large {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-grey);
    border-radius: 12px;
    border-left: 4px solid var(--brand-pink);
}

.dr-sobel-profile {
    display: flex;
    gap: 20px;
    align-items: start;
}

.dr-sobel-photo {
    flex-shrink: 0;
}

.team-member-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--brand-green);
}

.dr-sobel-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.dr-sobel-title {
    font-size: 1rem;
    color: var(--brand-pink);
    font-weight: 600;
    margin-bottom: 15px;
}

.dr-sobel-info p {
    font-size: 0.95rem;
    color: var(--brand-grey);
    line-height: 1.7;
    margin: 0;
}

.team-photos {
    margin-top: 20px;
}

.team-photos-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.team-photo-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-photo-item {
    text-align: center;
}

.team-member-photo-small {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--brand-blue);
    margin-bottom: 10px;
}

.team-member-name {
    font-size: 0.9rem;
    color: var(--brand-grey);
    font-weight: 600;
    margin: 0;
}

.team-member-title {
    font-size: 0.85rem;
    color: var(--brand-pink);
    font-weight: 500;
    margin: 5px 0;
}

.team-member-contact {
    font-size: 0.8rem;
    color: var(--brand-grey);
    margin: 5px 0 0 0;
}

.team-member-contact a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member-contact a:hover {
    color: var(--brand-green);
    text-decoration: underline;
}

.team-cta {
    text-align: center;
    margin-top: 30px;
}

.impact-press-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.impact-metric-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-grey);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.impact-metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    color: var(--brand-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-cta {
    text-align: center;
    margin-top: 30px;
}

.operational-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.operational-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.operational-block {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
}

.operational-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.operational-block p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.7;
    margin-bottom: 10px;
}

.operational-block a {
    color: var(--brand-pink);
    text-decoration: underline;
    font-weight: 600;
}

.operational-block a:hover {
    color: var(--brand-brown);
}

.blog-preview-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-preview-content {
    margin: 30px 0;
}

.blog-preview-content > p {
    font-size: 1.1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.featured-blog-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    align-items: center;
}

.blog-post-image {
    width: 100%;
}

.blog-featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.blog-post-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-post-excerpt {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.7;
    margin: 0;
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

.about-cta-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-banner {
        padding: 30px 20px;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-text p {
        font-size: 1rem;
    }
    
    .hero-story-content {
        margin: 20px auto;
    }
    
    .hero-story-content p {
        font-size: 1rem;
    }
    
    .team-expertise-section,
    .impact-press-section,
    .operational-section,
    .blog-preview-section,
    .about-cta-section {
        padding: 30px 20px;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dr-sobel-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-photo-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .impact-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .operational-content {
        grid-template-columns: 1fr;
    }
    
    .featured-blog-post {
        grid-template-columns: 1fr;
    }
    
    .about-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-ctas .cta-primary,
    .about-ctas .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Farms Page Specific Styles */
.dr-sobel-product-section {
    background: var(--white);
    padding: 50px 40px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-content {
    margin-top: 30px;
}

.science-callout {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--brand-green);
}

.science-callout h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.science-callout p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.product-benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.7;
}

.product-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.product-specs {
    margin-top: 30px;
}

.product-specs h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.specs-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.spec-item {
    background: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
    border-top: 3px solid var(--brand-pink);
}

.spec-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-grey);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.spec-item p {
    font-size: 0.95rem;
    color: var(--brand-grey);
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for Farms Page */
@media (max-width: 768px) {
    .dr-sobel-product-section {
        padding: 30px 20px;
    }
    
    .science-callout {
        padding: 20px;
    }
    
    .specs-table {
        grid-template-columns: 1fr;
    }
}

/* Shop Maintenance Section */
/* Shop Section */
.shop-section {
    padding: 40px 20px;
    margin: 40px 0;
    min-height: 400px;
}

.shop-section #collection-component-1763829313886 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Improve Shopify product grid layout */
.shop-section [class*="shopify-buy"] {
    box-sizing: border-box;
}

.shop-section [class*="shopify-buy__product"] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.shop-section [class*="shopify-buy__product"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Ensure products are evenly distributed */
.shop-section [class*="shopify-buy__product-set"],
.shop-section [class*="shopify-buy__product-set__products"] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
}

/* For 7 products: 3-3-1 layout on large screens, centered */
@media (min-width: 1200px) {
    .shop-section [class*="shopify-buy__product-set"],
    .shop-section [class*="shopify-buy__product-set__products"] {
        justify-content: flex-start;
    }
    
    /* Center the last item if it's alone on a row */
    .shop-section [class*="shopify-buy__product"]:nth-child(7) {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Better spacing for product cards */
.shop-section [class*="shopify-buy__product__title"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--brand-grey);
    margin: 15px 0 10px 0;
    padding: 0 15px;
}

.shop-section [class*="shopify-buy__product__price"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--brand-green);
    padding: 0 15px 15px 15px;
}

.shop-section [class*="shopify-buy__product__button"] {
    margin: 0 15px 15px 15px;
    width: calc(100% - 30px);
    background: var(--brand-green);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-section [class*="shopify-buy__product__button"]:hover {
    background: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.shop-maintenance-section {
    background: var(--white);
    padding: 80px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-message {
    max-width: 700px;
    margin: 0 auto;
}

.maintenance-message p {
    font-size: 1.3rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin: 0;
}

.maintenance-message a {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.maintenance-message a:hover {
    color: var(--brand-brown);
    text-decoration: underline;
}

/* Coming Soon Section (for placeholder pages) */
.coming-soon-section {
    background: var(--white);
    padding: 80px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-message {
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-message p {
    font-size: 1.3rem;
    color: var(--brand-grey);
    line-height: 1.8;
    margin: 0;
}

.coming-soon-message a {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coming-soon-message a:hover {
    color: var(--brand-brown);
    text-decoration: underline;
}

/* Legal Content Section (Privacy Policy, Terms of Service) */
.legal-content-section {
    background: var(--white);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content-section h1 {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    color: var(--brand-grey);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-content {
    color: var(--brand-grey);
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content strong {
    color: var(--brand-grey);
    font-weight: 600;
}

.legal-content a {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--brand-brown);
    text-decoration: underline;
}

/* Mobile Responsive for Shop Page */
/* Shop Page Title */
.shop-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--brand-grey);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

/* Product Details Modal */
.product-details-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-details-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.product-details-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.product-details-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--brand-grey);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10;
}

.product-details-modal-close:hover,
.product-details-modal-close:focus {
    color: var(--brand-green);
}

.product-details-content {
    padding-top: 10px;
}

.product-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--brand-grey);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--brand-green);
}

.product-detail-section {
    margin-bottom: 30px;
}

.product-detail-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--brand-grey);
    margin-bottom: 15px;
}

.product-detail-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--brand-green);
    margin-bottom: 12px;
    margin-top: 20px;
}

.product-detail-section p {
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-detail-section strong {
    color: var(--brand-green);
    font-weight: 600;
}

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

.event-schedule li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.6;
    border-bottom: 1px solid var(--light-grey);
}

.event-schedule li:last-child {
    border-bottom: none;
}

.event-schedule li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.recommendations-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--brand-grey);
    line-height: 1.6;
}

.recommendations-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.importance {
    font-style: italic;
    color: var(--brand-blue);
    font-size: 0.9rem;
}

/* View Details Button */
.view-details-btn {
    background: var(--brand-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.view-details-btn:hover {
    background: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.view-details-btn:active {
    transform: translateY(0);
}

/* More Info Button - appears above Add to Cart on all products */
.more-info-btn {
    background: var(--brand-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.more-info-btn:hover {
    background: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.more-info-btn:active {
    transform: translateY(0);
}

/* Ensure More Info button appears above Add to Cart button */
.shop-section [class*="shopify-buy__product__button"],
.shop-section button[class*="button"],
.shop-section a[class*="button"] {
    margin-top: 0 !important;
}

/* Style the button container to ensure proper spacing */
.shop-section [class*="shopify-buy__product"] .more-info-btn {
    margin: 0 15px 8px 15px;
    width: calc(100% - 30px);
}

@media (max-width: 768px) {
    .shop-section {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .shop-section #collection-component-1763829313886 {
        max-width: 100%;
    }
    
    .shop-section [class*="shopify-buy__product"] {
        margin-bottom: 25px;
    }
    
    .shop-page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .product-details-modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .product-detail-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .product-detail-section h2 {
        font-size: 1.3rem;
    }
    
    .product-detail-section h3 {
        font-size: 1.1rem;
    }
    
    .product-details-modal-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
    
    .shop-maintenance-section,
    .legal-content-section {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    .legal-content-section h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }
    
    .coming-soon-section {
        padding: 60px 30px;
        margin: 30px 0;
        min-height: 300px;
    }
    
    .maintenance-message p,
    .coming-soon-message p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .shop-maintenance-section,
    .coming-soon-section {
        padding: 40px 20px;
        margin: 20px 0;
    }
    
    .maintenance-message p,
    .coming-soon-message p {
        font-size: 1rem;
    }
}
