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

:root {
    --color-green: rgb(59, 104, 48);
    --color-purple: rgb(106, 52, 118);
    --color-orange: rgb(243, 146, 52);
    --color-cream: rgb(254, 229, 194);
}

body {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    /* Default based on welcome text */
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    padding-top: 100px;
    /* Account for fixed header */
}

@font-face {
    font-family: 'SanskritFont';
    src: url('assets/sanskrit.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

/* Header Styles */
/* Header Styles */
/* Header Styles */
.header {
    background-color: #bedeb6;
    padding: 3px 0;
    padding-bottom: 10px;
    min-height: 85px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
}

.header>.container {
    max-width: 100%;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 75px;
    width: auto;
}

/* Header Title */
.header-title {
    text-align: center;
    min-width: 0;
}

.main-title {
    font-family: 'SanskritFont', georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-green);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    white-space: nowrap;
}

.sub-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-green);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

/* Navigation Container adjustments */
.nav {
    margin: 0;
    flex-shrink: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Navigation List */
.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    /* No gap - borders create visual separation */
}

.nav-list>li {
    border: 1px solid var(--color-green);
    border-right: none;
}

.nav-list>li:first-child {
    border-radius: 20px 0 0 20px;
}

.nav-list>li:last-child {
    border-right: 1px solid var(--color-green);
    border-radius: 0 20px 20px 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-green);
    padding: 4px 20px;
    border-radius: inherit;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    display: block;
    line-height: 24px;
}

.nav-link:hover,
.nav-link.active {
    background: #FBB149;
    /* Orange background for active/hover */
    color: rgb(83, 37, 99);
    /* Purple text */
    font-weight: 700;
}

/* Responsive adjustment */
@media (min-width: 769px) and (max-width: 1200px) {
    .main-title {
        font-size: 24px;
    }

    .sub-title {
        font-size: 14px;
    }

    .nav-link {
        padding: 4px 12px;
        font-size: 13px;
    }

    .header-logo {
        height: 60px;
    }
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    list-style: none;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li a {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #ff6b35;
    padding-left: 25px;
}

/* Desktop Profile Icon */
.desktop-profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.desktop-profile-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
    transition: all 0.3s ease;
}

.desktop-profile-icon:hover svg {
    fill: #ff6b35;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    /* Added spacing per user request */
    /* Remove fixed height to allow content to flow naturally, or keep it but manage inner content */
    padding-bottom: 40px;
    /* Space for green banner */
    margin-top: 0;
    /* Remove gap - header padding extends to cover */
    background: white;
    /* Changed from black as per site look */
}

.hero-top-content {
    text-align: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Limit width to prevent excessive stretching on large screens */
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    /* Maintain a consistent aspect ratio */
    min-height: 300px;
    max-height: 400px;
    background: white;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Updated Slide Image Styles for 'Do Not Stretch' */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures image is not stretched/cropped */
}

/* Banner Styles */
.hero-banner {
    padding: 6px 0;
    /* Full width so no horizontal padding needed on container if text is centered */
    text-align: center;
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: normal;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 18px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 5;
}

.top-banner {
    top: 0;
    background: rgb(245, 128, 36);
    /* Orange */
}

.bottom-banner {
    bottom: 0;
    background: rgb(17, 126, 17);
    /* Green */
}

.orange-banner {
    background: #fbb149;
}

.green-banner {
    background: #138808;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    padding: 15px 0;
}

.hero-banner h2 {
    font-size: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* Overlay Text on Slides */
.slide-overlay-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.orange-text {
    background: rgba(255, 107, 53, 0.9);
    color: white;
}

.white-text {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 102, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgb(255, 102, 0);
    transform: scale(1.2);
}

/* Card Icons Update */
.card-icon img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Determine if needed based on card color */
}

/* Mobile Profile Icon - hidden on desktop */
.mobile-profile-icon {
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 85px;
    }

    .hero-slider {
        aspect-ratio: auto;
        height: auto;
        min-height: unset;
    }

    .hero {
        padding-bottom: 0;
    }

    .hero-banner {
        position: relative;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide.active {
        position: relative;
    }

    .dot {
        background: rgba(255, 102, 0, 0.5);
    }

    .dot.active {
        background: rgb(255, 102, 0);
    }

    .mobile-profile-icon {
        display: flex;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background: transparent;
    /* Match body background */
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.welcome-text {
    text-align: justify;
    /* Audit said justified */
    font-size: 16px;
    line-height: 1.4;
    /* 22.4px / 16px = 1.4 */
    color: #000;
    max-width: 775px;
    /* Audit max-width */
    margin: 0 auto 20px;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

/* Dive Deeper Section */
.dive-deeper {
    font-family: 'Open Sans', sans-serif;
    /* Clean background - remove gradients if not matching exactly, but keeping clean */
}

.dive-section-title {
    color: rgb(59, 104, 48);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.dive-container {
    display: flex;
    flex-direction: column;
    /* Stacked vertical blocks with gap */
    align-items: center;
    gap: 0;
    /* Gap handled by margin/height */
    max-width: 1200px;
    position: relative;
    padding-bottom: 30px;
}

.dive-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    width: 680px;
    /* From earlier Step 19 approx */
    height: 220px;
    border-radius: 40px;
}

.dive-left {
    background-color: var(--color-purple);
    border-radius: 40px;
    align-items: flex-start;
    height: 220px;
    /* Approx from analysis */
}

.dive-right {
    background-color: var(--color-orange);
    border-radius: 40px;
    align-items: flex-start;
    height: 220px;
    /* Approx from analysis */
}

.dive-center {
    /* Exact gap */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.dive-left {
    background-color: var(--color-purple);
    align-items: center;
    /* Center content in block */
    color: rgb(254, 229, 194);
}

.dive-right {
    background-color: var(--color-orange);
    align-items: center;
    color: white;
}

.dive-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 25px;
    transition: transform 0.2s;
}

.dive-link:last-child {
    margin-bottom: 0;
}

.dive-link:hover {
    transform: translateX(5px);
}

.dive-icon {
    width: auto;
    /* Allow natural width */
    height: 40px;
    /* Fixed height as per images */
    margin-right: 15px;
    object-fit: contain;
    display: block;
    /* Ensure visibility */
    filter: none;
    /* Remove filter if previously applied, user wants exact image */
}

.dive-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: underline;
}

/* Center Logo Styles */
.circular-logo {
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo-ring {
    width: 180px;
    height: 180px;
    border: 8px solid #F39200;
    /* Orange ring */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-top {
    font-size: 14px;
    font-weight: 700;
    color: #F39200;
    letter-spacing: 1px;
}

.logo-bottom {
    font-size: 14px;
    font-weight: 700;
    color: #F39200;
    letter-spacing: 1px;
}

/* Mobile Responsiveness for Dive Deeper */
@media (max-width: 900px) {
    .dive-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .dive-block {
        width: 100%;
        max-width: 500px;
        border-radius: 20px !important;
        /* Reset border radius for standalone blocks */
        align-items: center;
        text-align: center;
    }

    .dive-link {
        justify-content: center;
    }

    .dive-center {
        /* order: -1; Removed to keep logo in center between blocks */
        margin-bottom: 10px;
    }
}

/* Initiated Zen Abodes */
.initiated-zen {
    padding: 120px 0 40px 0;
    background: #994fb2;
    position: relative;
    overflow: hidden;
}

.initiated-zen::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: calc(100% - 15px);
    background: #97bb89;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.initiated-zen>.container {
    position: relative;
    z-index: 1;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
}

.zen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
    /* Center cards */
}

.zen-card {
    position: relative;
    border-radius: 40px;
    /* Updated radius */
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 238px;
    /* Fixed width */
    margin: 0 auto;
    /* Center in grid if single column */
}

.zen-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.zen-card img {
    width: 100%;
    height: 309px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zen-card:hover img {
    transform: scale(1.1);
}

.zen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.zen-card:hover .zen-overlay {
    transform: translateY(0);
}

.zen-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.zen-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Membership Section split layout */
.membership-section {
    padding: 0;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    /* Adjust as needed */
}

.split-half {
    flex: 1;
    min-width: 300px;
    /* Adjust breakpoint */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align text to left */
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.split-half.image-half {
    padding: 0;
    min-height: 400px;
}

.split-half.image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Background Colors */
.bg-purple {
    background-color: #b288c0;
    /* Light purple from image */
    color: #2e4a27;
    /* Dark green text */
}

.bg-white {
    background-color: #ffffff;
    color: #2e4a27;
    /* Dark green text */
}

.bg-cream {
    background-color: #faeacb;
    /* Light cream/beige */
    color: #2e4a27;
    /* Dark green text */
}

.bg-dark-gray {
    background-color: #222;
    color: white;
}

/* Typography for Split Sections */
.split-content h2 {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #3b6830;
    /* Green header */
    letter-spacing: 1px;
}

.split-content p {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-orange {
    background-color: #f39200;
    color: white;
}

.btn-orange:hover {
    background-color: #d88200;
}

/* FAQ Section specialized */
.faq-section-full {
    padding: 80px 20px;
    text-align: center;
}

.faq-section-full h2 {
    font-size: 48px;
    color: #3b6830;
    margin-bottom: 40px;
}

/* Responsive Override */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .split-half {
        width: 100%;
        padding: 40px 20px;
        min-height: auto;
    }

    .split-half.image-half {
        height: 300px;
    }

    /* Reorder for mobile: Image first? Or text first? 
       Usually alternating. We can use order property if needed. 
    */
}



/* Membership Section */
.membership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.membership-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.membership-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.membership-content {
    padding: 40px 30px;
}

.membership-content h2 {
    font-size: 28px;
    color: #8e44ad;
    margin-bottom: 20px;
}

.membership-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.learn-more-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background-color: #bedeb6;
    /* Match header color */
    color: #000;
    padding: 30px 0;
    text-align: center;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Optional subtle border */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-title {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #000;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    letter-spacing: normal;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 5px 0;
}

.social-icon-link {
    display: inline-block;
    transition: transform 0.2s ease;
    border-radius: 50%;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon-link img {
    display: block;
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.copyright {
    font-size: 12px;
    font-weight: 400;
    margin: 10px 0 0;
    color: #000;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
}

.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Split Section Styles (for Dream page etc) */
.split-section {
    display: flex;
    min-height: 500px;
    width: 100%;
}

.split-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.bg-purple {
    background-color: rgb(185, 153, 192);
    color: white;
}

.bg-orange {
    background-color: rgb(252, 215, 163);
    /* Or light peach if needed */
    color: black;
}

.bg-white {
    background-color: white;
    color: black;
}

.bg-black {
    background-color: black;
    color: white;
}

.split-title {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-green);
    /* Default, usually overridden */
}

.bg-purple .split-title {
    color: white;
}

/* Or keep green? Step 81 said Green Title. Use Green. */
.bg-purple .split-title,
.bg-orange .split-title,
.bg-white .split-title {
    color: var(--color-green);
}

.split-text {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Specific overrides based on observation */
.bg-purple .split-text {
    color: white;
}

.bg-orange .split-text {
    color: black;
}

.bg-white .split-text {
    color: black;
}

.section-btn {
    display: inline-block;
    background-color: var(--color-orange);
    color: white;
    /* Step 81 said "orange Learn More button" */
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    width: fit-content;
}

/* Story Page Styles */
.story-page {
    background: linear-gradient(to bottom, #e3f2fd, #ffffff);
    /* Light blue to white */
    padding-bottom: 50px;
}

.story-container {
    background-color: #b999c0;
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-container .section-title {
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.story-text {
    color: #000;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text p {
    margin-bottom: 25px;
}

/* Page Header & Grid Styles (Reused) */
.page-banner {
    color: white;
    text-align: center;
    padding: 60px 20px;
    background-image: linear-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url('assets/images/hero-collage.jpg');
    background-size: cover;
    background-position: center;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--color-green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Solid color banner (no background image) */
.page-banner-solid {
    text-align: center;
    padding: 60px 20px;
    background-color: rgb(185 153 192 / 98%);
}

.page-banner-solid h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #138808;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.page-banner-solid p {
    font-size: 18px;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.page-nav {
    /* Was blog-nav */
    background-color: #af96b8;
    /* Lavender */
    padding: 15px 0;
    text-align: center;
}

.page-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.page-nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.page-nav a:hover,
.page-nav a.active {
    color: var(--color-green);
}

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

.cards-grid {
    /* Was blog-grid */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* max-width: 900px; */
    /* Constrain width to keep 2 columns looking good */
    margin: 0 auto;
}

.content-card {
    /* Was blog-card */
    background-color: rgb(252 215 163);
    /* Lighter peach/beige as per image */
    min-height: auto;
    /* Let content dictate height */
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    /* More rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-card-image {
    height: 350px;
    /* Taller image */
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.content-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 28px;
    font-weight: 400;
    /* Looks regular in image */
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.card-text {
    font-size: 16px;
    color: #333;
    flex: 1;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: left;
    /* Or justify if preferred */
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.card-link {
    display: inline-block;
    background-color: #F39200;
    /* Orange */
    color: white;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    border: 3px solid #2caf63;
    /* Green border */
    margin: 0 auto;
    /* Center button */
    font-size: 18px;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    transition: all 0.3s ease;
}

.card-link:hover {
    background-color: #e08500;
    text-decoration: none;
    transform: scale(1.05);
}

/* Clickable Card Wrapper */
.card-clicakble-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.content-card {
    transition: all 0.3s ease;
}

/* Specific background color for locations page */
.locations-page .content-card {
    background-color: #eebeff;
}

/* Specific background color for actualized page */
.actualized-page .content-card {
    background-color: rgb(203, 255, 204);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.content-card:hover .card-title {
    color: #2c5f2d;
    /* Green color on hover */
    transition: color 0.3s ease;
}

.content-card:hover .card-link {
    text-decoration: underline;
}

/* FAQ Styles */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-details {
    background-color: #fff;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    background-color: #f9f9f9;
    list-style: none;
    /* Hide default marker */
    position: relative;
    padding-right: 40px;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-purple);
}

.faq-details[open] .faq-summary::after {
    content: '-';
}

.faq-details[open] .faq-summary {
    background-color: var(--color-lavender);
    color: white;
}

.faq-details[open] .faq-summary::after {
    color: white;
}

.faq-content {
    padding: 20px;
    line-height: 1.6;
    color: #444;
    background-color: #fff;
}

/* Login Page Styles */
.login-page {
    background-color: #e8f5e9;
    /* Light green background */
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-card h2 {
    color: var(--color-green);
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--color-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #274e13;
}

.social-login {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.social-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background-color: #f9f9f9;
}

/* Forum Styles */
.forum-header {
    background-color: var(--color-purple);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.forum-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.forum-category {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.forum-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-info h3 {
    color: var(--color-purple);
    margin-bottom: 5px;
    font-size: 20px;
}

.category-info p {
    color: #666;
    font-size: 14px;
}

.category-stats {
    text-align: right;
    min-width: 100px;
}

.stat-count {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-peach);
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Profile Mock Styles */
.profile-header {
    background-color: var(--color-lavender);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.profile-card {
    background: white;
    max-width: 800px;
    margin: -40px auto 50px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 10;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f4ce9d;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* Vision Page Styles */
.bg-lavender {
    background-color: #af96b8;
    /* Lighter purple from audit */
    color: #333;
}

.bg-peach {
    background-color: #f4ce9d;
    /* Lighter orange from audit */
    color: #333;
}

.vision-block {
    padding: 80px 20px;
    text-align: center;
}

.vision-block .container {
    max-width: 900px;
    margin: 0 auto;
}

.vision-block .section-title {
    color: var(--color-green);
    margin-bottom: 30px;
    font-size: 32px;
}

.vision-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Founders Grid */
.founders-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.founders-section .section-title {
    color: var(--color-green);
    /* Make sure this overrides default if needed */
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-weight: 700;
    word-spacing: 5px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns as per image */
    gap: 30px;
    padding: 0 20px;
}

.founder-card {
    background: #fcd7a3;
    /* Peach/Apricot color matching image */
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.3s ease;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-details {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    /* Reset center alignment */
}

.founder-name {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 24px;
    font-weight: 400;
    /* Regular weight as per image styling */
    color: #000;
    margin-bottom: 15px;
}

.founder-role {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 16px;
    color: #3f473e;
    /* Dark greenish grey */
    line-height: 1.5;
    margin-bottom: 30px;
    flex: 1;
}

.founder-social {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.founder-social a {
    color: #000;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.founder-social a:hover {
    transform: scale(1.1);
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Dream Sections */
.dream-sections {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe6f0 100%);
}

.dream-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.dream-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.dream-content .learn-more-btn {
    margin-top: 20px;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.location-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.location-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

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

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.nav.mobile-active {
    display: flex !important;
}




/* Responsive Design */
@media (max-width: 768px) {

    .header {
        min-height: auto;
        padding: 5px 0;
    }

    .header .container {
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 0;
        position: relative;
    }

    .header-top {
        flex-wrap: nowrap;
        gap: 0;
        align-items: center;
        padding: 0 8px 0 0;
    }

    .header-bottom {
        display: block;
        padding: 0;
        border: none;
    }

    .logo {
        flex-shrink: 0;
        margin-right: 0;
    }

    .header-logo {
        height: 70px;
    }

    .header-title {
        flex: 1;
        min-width: 0;
        text-align: center;
        padding: 0 2px;
    }

    .main-title {
        font-size: 18px;
        white-space: nowrap;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sub-title {
        font-size: 13px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    .header-actions {
        flex-shrink: 0;
        gap: 8px;
        min-width: 80px;
        justify-content: flex-end;
        margin-left: auto;
    }

    .mobile-profile-icon svg {
        width: 36px;
        height: 36px;
        fill: #333;
    }

    .hamburger-menu {
        display: flex;
        position: relative;
        width: 34px;
        height: 28px;
    }

    .hamburger-menu span {
        height: 4px;
    }

    /* Hide navigation and sign-in button on mobile */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #a8e6cf 0%, #dcedc8 50%, #fff9c4 100%);
        z-index: 999;
        padding-top: 80px;
        overflow-y: auto;
    }

    .desktop-profile-icon {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px;
    }

    .nav-list>li {
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        border-right: none;
        border-radius: 0;
    }

    .nav-list>li:first-child {
        border-radius: 0;
    }

    .nav-list>li:last-child {
        border-right: none;
        border-radius: 0;
    }

    .nav-link {
        text-align: left;
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
    }

    /* Mobile dropdown menu */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 0;
        padding: 0;
        margin-top: 0;
    }

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

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

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

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

    .dropdown-menu li a {
        padding: 12px 30px;
        font-size: 14px;
    }

    .dropdown-menu li a:hover {
        padding-left: 35px;
    }

    .cards-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }

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

    .zen-card {
        width: 100%;
        max-width: none;
    }

    .zen-card img {
        height: 200px;
        object-fit: cover;
    }

    .initiated-zen {
        padding-top: 100px;
    }

    .initiated-zen::before {
        height: calc(100% - 10px);
        width: 250%;
    }

    .hero-banner h2 {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.blog-date {
    color: #999;
}

.blog-category {
    color: #ff6b35;
    font-weight: 600;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #2c5f2d;
}

/* Location Image and Badge */
.location-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.location-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.location-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.location-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* Section Divider */
.section-divider {
    border: none;
    height: 1px;
    background-color: var(--color-green);
    margin: 0;
    width: 100%;
}

/* Mobile Layout Revisions for Dream Page */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    /* Ensure consistent Image -> Text flow on mobile */
    .split-section:nth-of-type(even) {
        flex-direction: column-reverse;
    }

    .split-block {
        width: 100%;
        padding: 40px 20px;
        flex: auto;
    }

    .split-image {
        min-height: 300px;
    }
}

@media (max-width: 400px) {
    .main-title {
        font-size: 16px;
    }
}

@media (max-width: 365px) {
    .main-title {
        font-size: 13px;
    }
}



@media (max-width: 330px) {
    .header-actions {
        gap: 0px;
        min-width: 0px;
    }
}

/* Blog Post Styles */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.blog-header-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.meta-text {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6b6b6b;
    gap: 6px;
}

.author-name {
    color: #242424;
    font-weight: 500;
}

.meta-divider {
    padding: 0 2px;
}

.meta-options {
    margin-left: auto;
    cursor: pointer;
    font-size: 20px;
    color: #6b6b6b;
}

.blog-title {
    font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    /* Darker than green for main title as per image */
    margin-bottom: 30px;
    line-height: 1.25;
}

.blog-content {
    font-size: 18px;
    /* Slightly larger for readability */
    line-height: 1.6;
    color: #242424;
    font-family: georgia, palatino, serif;
}

/* Floating image style matching the screenshot */
.blog-floating-image {
    float: left;
    width: 280px;
    height: auto;
    margin-right: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    object-fit: contain;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.blog-footer-section {
    margin-top: 60px;
    padding-top: 20px;
    font-family: 'Open Sans', sans-serif;
}

.category-link {
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: block;
    margin-bottom: 40px;
}

.blog-footer-divider {
    height: 1px;
    background-color: #e6e6e6;
    width: 100%;
    margin-bottom: 30px;
}

.social-share-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.share-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #6b6b6b;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.share-icon-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-icon-btn:hover {
    color: #242424;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 32px;
    }

    .blog-floating-image {
        float: none;
        width: 100%;
        max-width: 400px;
        display: block;
        margin: 0 auto 30px;
    }

    .blog-container {
        padding-top: 20px;
    }
}

/* Get Involved Page Specific Override */
.get-involved-page {
    padding-top: 50px !important;
}

/* Membership Types Grid Section - Fixed */
.membership-types-section {
    background-color: white;
    padding: 60px 0;
}

.membership-types-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    /* Force 3 columns */
    gap: 40px;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: transparent;
}

.type-image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* subtle border */
}

.type-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.type-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.type-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: georgia, palatino, serif;
    color: #000;
}

.type-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    max-width: 100%;
}

@media (max-width: 900px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .types-grid {
        grid-template-columns: 1fr !important;
    }

    .type-image-container {
        width: 200px;
        height: 200px;
    }
}