.elementor-2482 .elementor-element.elementor-element-962ec91{margin-top:0px;margin-bottom:0px;}.elementor-2482 .elementor-element.elementor-element-962ec91.elementor-section{padding:0px 0px 0px 0px;}.elementor-2482 .elementor-element.elementor-element-ca1e76c.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-2482 .elementor-element.elementor-element-ca1e76c > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-2482 .elementor-element.elementor-element-ca1e76c > .elementor-element-populated.elementor-element-populated.elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-2482 .elementor-element.elementor-element-fec2d18 > .elementor-widget-container{margin:0px 0px 0px 0px;}:root{--page-title-display:none;}body.elementor-page-2482{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-2482 .elementor-element.elementor-element-ca1e76c{width:100%;}}/* Start custom CSS for html, class: .elementor-element-fec2d18 *//* --- Global Base Styles and Variables (Consolidated) --- */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Consolidated Color Palette */
    --color-primary: #00AEB9; /* Main Teal */
    --color-primary-dark: #037d85; /* Darker Teal, used for some text/gradients */
    --color-secondary: #7A287A; /* Purple (from Growth Track) */
    --color-accent-blue: #2575fc; /* Blue (from online track, LIFE Groups) */
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-medium-gray: #e9ecef;
    --color-dark-gray: #333; /* General dark text */
    --color-text-muted: #6c757d; /* Lighter text for descriptions */
    --color-dark-text: #2c3e50; /* Specific dark text from Growth Track */
    --color-medium-text: #555; /* Specific medium text from Growth Track */
    --color-light-text: #ffffff; /* Explicit white text */
    --color-background-light: #f4f7f6; /* Page background for Growth Track */
    --color-border-light: #e0e0e0;

    /* Online Track Specific Colors (from Growth Track) */
    --online-card-gradient-start: #2575fc; /* Blue */
    --online-card-gradient-end: #00AEB9; /* Teal */
    --online-line-gradient-start: #00AEB9;
    --online-line-gradient-end: #2575fc;
    --online-neutral-card-bg: #f0f0f0;
    --online-neutral-card-text: #555;
    --color-soft-dark-gray: #454f5b; /* From LIFE Groups */

    /* Border Radii (Consolidated) */
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 16px;
    --border-radius-xl: 20px;
    --border-radius-pill: 25px;

    /* Shadows (Consolidated) */
    --shadow-light: rgba(180, 180, 180, 0.25);
    --shadow-medium: rgba(180, 180, 180, 0.3);
    --shadow-strong: rgba(0, 0, 0, 0.1);
    --shadow-strong-hover: rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    background-color: var(--color-background-light); /* Default page background */
    color: var(--color-dark-text); /* Default text color for body */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box; /* Set global box-sizing */
    overflow-x: hidden; /* Prevent horizontal scroll during transitions */
}

* {
    box-sizing: border-box;
}

/* --- Page Transition / SPA Specific Styles --- */
.page-content-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Important to contain the sliding pages */
}

.page-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; /* Ensure sections take full height for consistent animation */
    padding-bottom: 80px; /* Add some padding at the bottom for content that might exceed 100vh */
    background-color: var(--color-background-light); /* Default background for inactive sections */
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.6s ease;
    opacity: 0;
    transform: translateY(100vh); /* Start off-screen below */
    z-index: 1; /* Default z-index */
    will-change: transform, opacity; /* Optimize for animation */
}

.page-section.is-active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2; /* Active page on top */
    position: relative; /* Take up space in the document flow */
    min-height: auto; /* Allow content to dictate height */
    padding-bottom: 0; /* Remove fixed bottom padding for active page */
    background-color: transparent; /* Actual content sets background, allowing flexibility */
}

.page-section.page-leaving {
    opacity: 0;
    transform: translateY(-100vh); /* Slide up and out */
    z-index: 1; /* Go behind incoming page */
}

/* Initial state for the first active page on load */
.page-section:first-of-type.is-active {
    position: relative; /* It should establish normal flow */
    transform: translateY(0); /* Start immediately visible */
    opacity: 1;
}

/* Specific background overrides from original files where needed */
#life-groups-page {
    background-color: var(--color-white); /* LIFE Groups specified white body */
}
#baptism-page {
     background-color: var(--color-white); /* Baptism specified white body */
}


/* --- Site Header (Consolidated) --- */
.site-header {
    width: 100%;
    position: relative;
    z-index: 10; /* Ensure header is always on top */
}

.header-hero-banner {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.hero-banner-text-column {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px;
}

.hero-banner-info-text {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: -20px; /* Adjusted based on Growth Track hero */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-banner-tagline {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
}

.hero-banner-main-title {
    font-family: var(--font-secondary);
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 0;
    color: var(--color-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-banner-image-column {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-image-column img,
.hero-banner-image-column video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Main Navigation (Consolidated) */
.main-navigation {
    background-color: var(--color-primary);
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.main-navigation ul li a {
    display: block;
    padding: 18px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
}
.main-navigation ul li a:hover { background-color: rgba(255, 255, 255, 0.1); }
.main-navigation ul li a.active-nav-item { font-weight: 700; }
.main-navigation ul li a.active-nav-item::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--color-white);
}
.mobile-menu-toggle { display: none; color: var(--color-white); background: none; border: none; font-size: 24px; padding: 15px 20px; cursor: pointer; }

/* --- Checkmark Header (Growth Track Specific, renamed class to avoid conflict) --- */
.page-title-section { /* Renamed from .site-header in original Growth Track file */
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-title-section-content-aligner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    left: -5px;
}

.checkmark-icon {
    width: 90px;
    height: 90px;
    display: block;
    flex-shrink: 0;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2.5;
    stroke-miterlimit: 10;
    stroke: var(--color-primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3.5;
    stroke: var(--color-primary);
    fill: none;
    animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.page-title-section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-text);
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.journey-section-wrapper {
     padding-bottom: 60px;
     padding-left: 20px;
     padding-right: 20px;
}

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

/* Growth Track Switcher Styles */
.track-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.track-switch-button {
    flex: 1;
    padding: 12px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.track-switch-button:first-child {
     border-right: 1px solid var(--color-primary);
}
.track-switch-button.active {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    border-right-color: var(--color-primary);
}
 .track-switch-button.active + .track-switch-button {
     border-left: none;
}

.track-switch-button:hover:not(.active) {
    background-color: #e6f7f8;
}

/* Content Panel Styling */
.track-content-panel {
    display: none;
}
.track-content-panel.is-active {
    display: block;
    animation: fadeInContent 0.5s ease-in-out;
}
@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.journey-main-title {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 900;
    color: var(--color-dark-text);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.journey-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: var(--color-medium-text);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Generic Growth Track Timeline (used by both in-person and online) */
.growth-timeline {
    position: relative;
    margin: 0 auto;
}
.growth-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: #dde2e7;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 5px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-step {
    padding: 25px;
    position: relative;
    width: calc(50% - 45px);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    z-index: 2;
    color: var(--color-light-text);
    text-align: left;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease, box-shadow 0.3s ease;
}
/* In-Person Specific Colors */
.timeline-step.color-teal { background-color: var(--color-primary); }
.timeline-step.color-purple { background-color: var(--color-secondary); }

.timeline-step::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 5px solid;
    z-index: 3;
    box-shadow: 0 0 0 4px var(--color-background-light);
}
.timeline-step.color-teal::before { border-color: var(--color-primary); }
.timeline-step.color-purple::before { border-color: var(--color-secondary); }
.timeline-step::after {
    content: '';
    position: absolute;
    top: 32px;
    border-style: solid;
    border-width: 10px;
}
.timeline-item:nth-child(odd) .timeline-step { left: 0; }
.timeline-item:nth-child(odd) .timeline-step::before { right: -33px; }
.timeline-item:nth-child(odd) .timeline-step::after {
    right: -20px;
    border-color: transparent transparent transparent;
}
.timeline-item:nth-child(odd) .timeline-step.color-teal::after { border-left-color: var(--color-primary); }
.timeline-item:nth-child(odd) .timeline-step.color-purple::after { border-left-color: var(--color-secondary); }
.timeline-item:nth-child(even) .timeline-step { left: calc(50% + 35px); }
.timeline-item:nth-child(even) .timeline-step::before { left: -33px; }
.timeline-item:nth-child(even) .timeline-step::after {
    left: -20px;
    border-color: transparent transparent transparent;
}
.timeline-item:nth-child(even) .timeline-step.color-teal::after { border-right-color: var(--color-primary); }
.timeline-item:nth-child(even) .timeline-step.color-purple::after { border-right-color: var(--color-secondary); }
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.step-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--color-light-text);
}
.step-icon-ovals { display: flex; gap: 3px; }
.step-icon-ovals span {
    width: 8px; height: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}
.step-icon-ovals span:nth-child(2) { transform: translateY(-2px); }
.step-description {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
}
.step-date-button {
    display: inline-block;
    padding: 10px 22px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-light-text);
    background-color: rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}
.step-date-button:hover {
    background-color: rgba(0,0,0, 0.3);
    transform: translateY(-2px);
}
.timeline-step.is-visible {
    animation: bubblePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes bubblePop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- ONLINE TRACK SPECIFIC STYLES (Growth Track) --- */
#online-track {
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.online-timeline::before {
    background: linear-gradient(to bottom, var(--online-line-gradient-start), var(--online-line-gradient-end));
    width: 8px;
}

.online-timeline .timeline-step {
    background: linear-gradient(135deg, var(--online-card-gradient-start), var(--online-card-gradient-end));
    color: var(--color-light-text);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.25);
    transition: all 0.3s ease;
}

.online-timeline .timeline-step:hover {
    box-shadow: 0 12px 30px rgba(37, 117, 252, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.online-timeline .timeline-step::before {
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px var(--color-background-light);
}

.online-timeline .timeline-item:nth-child(odd) .timeline-step::before {
    border-color: var(--online-card-gradient-start);
}
.online-timeline .timeline-item:nth-child(even) .timeline-step::before {
    border-color: var(--online-card-gradient-end);
}

.online-timeline .timeline-item:nth-child(odd) .timeline-step::after {
    border-left-color: var(--online-card-gradient-start);
}
.online-timeline .timeline-item:nth-child(even) .timeline-step::after {
    border-right-color: var(--online-card-gradient-end);
}

.online-timeline .step-icon-ovals span {
    background-color: rgba(255, 255, 255, 0.9);
}

.online-signup-button {
    display: inline-block;
    padding: 10px 25px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-light-text);
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent-blue));
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}
.online-signup-button:hover {
    background: linear-gradient(45deg, #009aa4, #1a64e1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.5);
}

/* Specific styling for the last step ("Step FOUR - Serve") in online track */
.online-timeline .timeline-item:last-child .timeline-step {
    background: var(--online-neutral-card-bg);
    color: var(--online-neutral-card-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.online-timeline .timeline-item:last-child .timeline-step .step-title {
    color: var(--color-dark-text);
}

.online-timeline .timeline-item:last-child .timeline-step .step-icon-ovals span {
    background-color: rgba(0, 0, 0, 0.2);
}

.online-timeline .timeline-item:last-child .timeline-step::before {
    border-color: var(--online-neutral-card-text) !important;
    box-shadow: 0 0 0 4px var(--online-neutral-card-bg) !important;
}

.online-timeline .timeline-item:last-child .timeline-step::after {
    border-left-color: var(--online-neutral-card-bg) !important;
    border-right-color: var(--online-neutral-card-bg) !important;
}

.online-timeline .timeline-item:last-child .step-date-button {
    background-color: #777;
    color: var(--color-light-text);
}
.online-timeline .timeline-item:last-child .step-date-button:hover {
    background-color: #555;
}

/* --- END ONLINE TRACK SPECIFIC STYLES --- */


/* REGISTRATION SECTION (Growth Track) */
.registration-section {
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); /* Matches image's subtle shadow */
}
.registration-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
}
.registration-description {
    font-family: var(--font-primary);
    font-size: 17px;
    color: var(--color-medium-text);
    max-width: 680px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
}
.registration-button {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light-text);
    background-color: var(--color-secondary);
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(122, 40, 122, 0.3);
}
.registration-button:hover,
.registration-button:focus {
    background-color: #5d1f5d;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(122, 40, 122, 0.4);
}

/* NEW: Growth Track Director Section - Corrected for circular image and matching original screenshot layout */
.growth-track-director-section {
    display: flex;
    flex-direction: row; /* Force row direction for larger screens as per image */
    align-items: center; /* Vertically center items */
    justify-content: flex-start; /* Align items to the start (left) */
    text-align: left; 
    /*Box Size*/
    padding: 60px 90px;
    margin-top: 60px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); /* Matches image's subtle shadow, no hover */
    max-width: 900px; /* Or a suitable max-width for the container */
    margin-left: auto;
    margin-right: auto;
    gap: 25px; 
}

.director-image-wrapper {
    flex-shrink: 0; 
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden; 
    border: 4px solid var(--color-primary); 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

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

.director-info {
    flex-grow: 1; 
    text-align: left;
}

.director-name {
    font-family: var(--font-secondary);
    font-size: 36px; 
    font-weight: 700; 
    color: var(--color-dark-text); 
    margin-top: 0;
    margin-bottom: 5px; 
    line-height: 0;
    text-shadow: none; /* No text shadow in the image */
}

.director-title {
    font-family: var(--font-primary);
    font-size: 20px; /* Adjusted to visually match the size in the image */
    color: var(--color-primary); /* Matches the teal color */
    font-weight: 500; /* Adjusted to visually match the weight in the image */
    margin-bottom: 10px; /* Adjusted margin to match tighter spacing in image */
    text-transform: none; /* Not uppercase in the image */
    letter-spacing: normal; /* No letter-spacing in the image */
}

.director-phone {
    font-family: var(--font-primary);
    font-size: 20px; /* Adjusted to visually match the size in the image */
    color: var(--color-medium-text); /* Matches the medium text color */
    margin-top: 0;
    margin-bottom: 0;
}

.director-phone a {
    color: var(--color-medium-text); /* Default color as per image */
    text-decoration: none; /* No underline by default as per image */
    transition: color 0.3s ease; /* Only color transition on hover */
    /* Removed any transform to ensure static look as per image */
}

.director-phone a:hover {
    color: var(--color-primary); /* Still good to have hover color change */
    text-decoration: underline; /* Add underline on hover for usability */
}


/* "WHAT TO EXPECT" SECTION (Growth Track) */
.expectations-section {
    text-align: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid var(--color-border-light);
}
.expectations-main-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 900;
    color: var(--color-dark-text);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.expectations-intro {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-medium-text);
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.classes-location-info {
    font-family: var(--font-primary);
    font-size: 17px;
    color: var(--color-dark-text);
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
    font-weight: 600;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0 auto 50px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.expectation-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}
.expectation-item {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.expectation-icon {
    width: 45px;
    height: auto;
    flex-shrink: 0;
    margin-top: 3px;
}
.expectation-item-content {
    flex-grow: 1;
}
.expectation-item-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 8px;
}
.expectation-item-description {
    font-size: 15px;
    color: var(--color-medium-text);
    line-height: 1.6;
    margin: 0;
}

/* --- LIFE Group Hero Section --- */
.life-group-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: var(--border-radius-large);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 25px var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.life-group-hero:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.life-group-hero .hero-content { /* Specific to this hero */
    flex: 1 1 55%;
    min-width: 300px;
    display: block; /* Override flex-column for baptism/vision team */
}

.life-group-hero .eyebrow-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.life-group-hero .main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.life-group-hero .subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn.primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero-btn.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.hero-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.semester-info-bar {
    background-color: rgba(0,0,0, 0.1);
    text-align: center;
    padding: 15px 20px;
    margin: 40px -60px -50px -60px;
    font-size: 16px;
    font-weight: 500;
}
.semester-info-bar strong {
    font-weight: 700;
}

.hero-image-area {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.hero-image-area img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block;
}

/* --- Learn More Container (Accordion) --- */
.learn-more-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: var(--color-white);
    padding: 50px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.learn-more-container .section-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    text-align: center;
    width: 100%;
}

.learn-more-container .intro-paragraph {
    font-size: 18px;
    color: var(--color-soft-dark-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid #e7eaf0;
    margin-bottom: 15px; /* NEW: Space between accordion items */
    border-radius: 8px; /* NEW: Rounded corners for each item */
    overflow: hidden; /* Ensures child border-radius applies nicely */
    border: 1px solid var(--color-border-light, #e0e0e0); /* NEW: Subtle border */
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px; /* Adjusted: More generous padding */
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: var(--color-primary); /* NEW: Primary color for header background */
    color: var(--color-white); /* NEW: White text color for contrast */
    width: 100%; /* Ensure it spans full width */
    border: none; /* Remove default button border */
    text-align: left; /* Keep text left-aligned */
    font-size: 1.25em; /* Adjusted: Larger font for title within header */
    font-weight: 600; /* Make it bold */
}
.accordion-header:hover {
    background-color: var(--color-primary-dark); /* NEW: Slightly darker on hover */
}


.accordion-title {
    font-family: var(--font-primary);
    font-size: 1em; /* Base font size from header will apply, this makes it relative */
    font-weight: 600;
    color: inherit; /* Use color from parent (.accordion-header) */
    transition: color 0.2s ease;
    margin: 0; /* Remove default margins from h-tags if used */
}

.accordion-indicator {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-white); /* White for indicator in header */
    transition: transform 0.3s ease-in-out;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    padding: 0 25px; /* Initialize padding to 0 */
    background-color: var(--color-light-gray); /* NEW: Light gray background for content */
    border-left: 5px solid var(--color-primary); /* NEW: Primary color border on left */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-content p {
    margin: 0 0 15px 0;
}
.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Active State for Accordion Items */
.accordion-item.active .accordion-indicator {
    transform: rotate(45deg); /* Rotates the + to an X or makes it look like a minus */
}
.accordion-item.active .accordion-title {
    color: var(--color-white); /* Should remain white if header background is primary */
}

.accordion-item.active .accordion-content {
    padding-top: 20px; /* Adjust padding for active state */
    padding-bottom: 25px; /* Adjust padding for active state */
    max-height: 1000px; /* Sufficiently large value to show all content */
}


/* --- Coaches Section --- */
.coaches-section-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.coaches-section-container .section-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
    text-align: center;
    width: 100%;
}

.coaches-section-container .section-subtitle {
    font-size: 18px;
    color: var(--color-soft-dark-gray);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coach-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.coach-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 25px var(--shadow-light);
    overflow: hidden;
    width: calc(50% - 15px);
    max-width: 420px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.coach-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.coach-info {
    padding: 25px 30px;
    text-align: center;
    background-color: var(--color-light-gray);
    border-top: 1px solid var(--color-medium-gray);
}

.coach-name {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: #036970;
    margin-top: 0;
    margin-bottom: 5px;
}

.coach-role {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 0;
}

/* --- Life Groups Grid Section --- */
.life-groups-section {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 60px auto;
}

.life-groups-header {
    text-align: center;
    margin-bottom: 50px;
}

.life-groups-header-subtitle {
    font-size: 1.1em;
    color: var(--color-text-muted);
    margin: 0 auto 30px auto;
    max-width: 768px;
}

.life-groups-header-title {
    font-family: var(--font-secondary);
    font-size: 2.8em;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.life-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.life-group-card {
    background-color: var(--color-card-background);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 25px var(--shadow-strong);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.life-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-strong-hover);
}

.life-group-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.life-group-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.life-group-overlay-title {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    pointer-events: none;
    line-height: 1;
}

.life-group-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.life-group-description {
    font-size: 0.95em;
    color: var(--color-dark-gray);
    margin-bottom: 25px;
    flex-grow: 1;
}

.life-group-button {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent-blue));
    color: var(--color-white);
    padding: 9px 18px;
    text-decoration: none;
    border-radius: var(--border-radius-small);
    font-weight: 500;
    font-size: 0.85em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    margin-top: auto;
}

.life-group-button:hover,
.life-group-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #049ba4, #2067e4);
    outline: none;
}

/* --- Baptism Hero Section --- */
.baptism-hero {
    background: linear-gradient(135deg, #04aeb9 0%, #037d85 100%);
    color: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(180, 180, 180, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.baptism-hero:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(150, 150, 150, 0.35);
}

.hero-top-tab-bar {
    display: flex;
    background-color: rgba(0,0,0, 0.15);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-top-tab-link {
    flex: 1;
    padding: 18px 20px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-bottom-color 0.2s ease;
    border-bottom: 3px solid transparent;
    outline: none;
}
.hero-top-tab-link:not(:last-child){
    border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-top-tab-link:hover {
    background-color: rgba(0,0,0, 0.1);
    color: #ffffff;
}
.hero-top-tab-link.active-top-tab {
    color: #ffffff;
    font-weight: 600;
    border-bottom-color: #ffffff;
    background-color: rgba(0,0,0, 0.05);
}

.hero-main-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 60px;
    flex-grow: 1;
}

.hero-content {
    flex: 1 1 55%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.hero-content .eyebrow-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.tab-content-wrapper {
    flex-grow: 1;
}

.hero-tab-content {
    display: none;
}
.hero-tab-content.active-content {
    display: block;
}

.hero-content .main-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.25;
}

.hero-content .subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}
.hero-content .subtitle a#readMoreLink {
    text-decoration: underline;
    color: inherit;
    font-weight: bold;
    cursor: pointer;
}

.expectations-list {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    text-align: left;
    flex-wrap: wrap;
}

.expectation-item {
    flex: 1;
    min-width: 200px;
    padding: 20px; /* <--- Changed padding to add horizontal space */
    background-color: #049ba4; /* <--- NEW: Background color */
    border-radius: 8px; /* <--- NEW: Slightly rounded corners */
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* <--- Optional: Adds subtle depth */
}

.expectation-icon {
    font-size: 1.8em;
    color: #fff; /* <--- Changed to white for readability */
    width: 30px;
    text-align: center;
    margin-top: 3px;
}

.expectation-text-content {
    color: #fff; /* <--- Changed to white for readability */
    flex: 1;
}

.expectation-title {
    font-size: 1.15em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    color: #fff; /* <--- Changed to white for readability */
}

.expectation-desc {
    font-size: 0.95em;
    color: #fff; /* <--- Changed to white for readability */
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-actions {
    margin-top: 20px;
}

.hero-btn {
    padding: 15px 30px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hero-btn.primary {
    background-color: #ffffff;
    color: #04aeb9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero-btn.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-image-area {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}
.hero-image-area img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block;
    transition: opacity 0.5s ease-in-out;
}
.hero-image-area video { /* Specific for Baptism hero video */
     max-width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.15);
     display: block;
}

.info-bar {
    background-color: rgba(0,0,0, 0.15);
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.info-bar strong {
    font-weight: 700;
}

/* --- FAQ Section (Baptism) --- */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
    text-align: center;
    color: var(--color-dark-text);
    margin-bottom: 30px;
    font-size: 2.5em;
}

.faq-item {
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    background-color: var(--color-primary);
    color: white;
    padding: 15px 20px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover,
.faq-question.active {
    background-color: var(--color-primary);
}

.faq-question .icon {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 15px;
    background-color: #f9f9f9;
    border-left: 3px solid var(--color-primary);
    margin-top: 10px;
    border-radius: 0 0 5px 5px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer.active {
    padding: 15px;
}

.faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--color-dark-text);
}

.faq-answer em {
    display: block;
    margin-top: 5px;
    font-style: italic;
    color: #555;
    font-size: 0.95em;
}

.faq-answer ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* --- Contact Section (Baptism) --- */
.contact-section {
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 30px;
    background-color: #eaf7f8;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    color: var(--color-primary);
}

.contact-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.2em;
    margin-bottom: 10px;
    color: var(--color-primary-dark);
}

.contact-section h3 {
    font-family: var(--font-primary);
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.contact-section .contact-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
}

.contact-section .contact-btn:hover {
    background-color: #009DA6;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* --- Vision Team Hero --- */
.vision-team-hero {
    background: linear-gradient(135deg, #04aeb9 0%, #037d85 100%);
    color: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(180, 180, 180, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.vision-team-hero:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(150, 150, 150, 0.35);
}

/* Areas to Serve Container */
.serve-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.serve-header {
    text-align: center;
    margin-bottom: 40px;
}

.serve-header h1 {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 10px;
}

.serve-header .subtitle {
    font-size: 16px;
    color: var(--color-medium-text);
    font-style: italic;
}

.ministry-focus {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.ministry-image {
    flex: 0 0 40%;
    max-width: 400px;
}

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

.ministry-description {
    flex: 1;
    position: relative;
    min-width: 280px;
}

.ministry-description h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: #04aeb9;
    margin-top: 0;
    margin-bottom: 15px;
}

.ministry-description > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

/* Team Slider Styles */
.team-slider-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.team-card.slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    background-color: #fdfdfd;
    border: 1px solid #e7e7e7;
    padding: 25px 60px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px;
}

.team-card h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}
.team-card h3 .asterisk {
    color: #e74c3c;
    font-weight: bold;
}

.team-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0;
    text-align: center;
    word-break: break-word;
}

.read-more-link {
    color: #04aeb9;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}
.read-more-link:hover {
    color: #037d85;
}
.more-content {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(4, 174, 185, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.slider-btn:hover {
    background-color: #037d85;
    transform: translateY(-50%) scale(1.05);
}
.slider-btn.prev-btn {
    left: 10px;
}
.slider-btn.next-btn {
    right: 10px;
}
.slider-btn:disabled {
    background-color: rgba(128, 128, 128, 0.5);
    cursor: not-allowed;
    box-shadow: none;
    transform: translateY(-50%);
}

/* Pagination Dots Styles */
.slider-pagination {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: block;
}

.pagination-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination-dot.active {
    background-color: #04aeb9;
    transform: scale(1.2);
}

.pagination-dot:hover:not(.active) {
    background-color: #888;
}

/* Button Styles */
.ministry-actions-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.global-register-button-container {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -20px;
}

/* Modal Styles (Consolidated) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: var(--color-white);
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 700px;
    height: 90vh;
    max-height: 750px;
    border-radius: var(--border-radius-medium);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.close-button {
    color: #555;
    align-self: flex-end;
    font-size: 32px;
    font-weight: bold;
    padding: 0 5px;
    line-height: 1;
    cursor: pointer;
}
.close-button:hover, .close-button:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}
#modalFormIframe { /* Renamed for clarity */
    flex-grow: 1;
    border: none;
    width: 100%;
    height: 100%;
}


/* --- Responsive Styles (Consolidated and refined) --- */

/* For screens up to 992px (e.g., larger tablets) */
@media (max-width: 992px) {
    /* Header Hero Banner */
    .hero-banner-text-column {
        text-align: center;
        align-items: center;
        padding-right: 0;
    }
    .hero-banner-tagline { font-size: 26px; }
    .hero-banner-main-title { font-size: 54px; }

    /* Growth Track Checkmark Header */
    .page-title-section-content-aligner {
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 15px;
        padding: 0 15px;
    }
    .checkmark-icon { width: 60px; height: 60px; }
    .checkmark__circle { stroke-width: 3; }
    .checkmark__check { stroke-width: 4; }
    .page-title-section-title { font-size: 32px; }

    .track-switcher { flex-direction: column; border-radius: 8px; border-width: 1px; max-width: 90%; }
    .track-switch-button { font-size: 15px; border-right: none !important; }
    .track-switch-button:not(:last-child) { border-bottom: 1px solid var(--color-primary); }
    .track-switch-button.active:not(:last-child) { border-bottom-color: var(--color-primary); }

    .journey-main-title { font-size: 30px; }
    .journey-subtitle { font-size: 16px; margin-bottom: 40px; }

    .growth-timeline::before { left: 20px; transform: translateX(0); }
    .timeline-step {
        width: auto;
        left: 0 !important;
        margin-left: 55px;
        margin-right: 10px;
    }
    .timeline-item:nth-child(even) .timeline-step {
         margin-left: 55px;
    }
    .timeline-step::before {
        left: -35px;
        right: auto;
        top: 30px;
    }
    .timeline-step::after {
        left: -20px;
        right: auto;
        border-color: transparent transparent transparent !important;
    }
    /* Specific border colors for mobile arrows based on original colors */
    .timeline-step.color-teal::after { border-left-color: var(--color-primary) !important; }
    .timeline-step.color-purple::after { border-left-color: var(--color-secondary) !important; }

    /* Online Specific mobile styles */
    .online-timeline .timeline-item:nth-child(odd) .timeline-step::after {
        border-left-color: var(--online-card-gradient-start) !important;
    }
    .online-timeline .timeline-item:nth-child(even) .timeline-step::after {
        border-left-color: var(--online-card-gradient-end) !important;
    }
    .online-timeline .timeline-item:last-child .timeline-step::after {
        border-left-color: var(--online-neutral-card-bg) !important;
    }

    .step-title { font-size: 20px; }
    .step-description { font-size: 14px; }
    .online-signup-button { font-size: 14px; padding: 8px 20px; }

    .registration-section { padding: 40px 15px; margin-top: 40px; }
    .registration-title { font-size: 28px; }
    .registration-description { font-size: 16px; margin-bottom: 30px; }
    .registration-button { font-size: 15px; padding: 12px 30px; }

    /* Director Section Mobile */
    .growth-track-director-section {
        padding: 40px 15px;
        margin-top: 40px;
        flex-direction: column; /* Stack on mobile */
        gap: 20px;
    }
    .director-image-wrapper {
        width: 140px;
        height: 140px;
        border-width: 4px;
        border-radius: 50%; /* Ensure it's still circular on mobile */
    }
    .director-name {
        font-size: 28px;
    }
    .director-title,
    .director-phone {
        font-size: 16px;
    }

    .expectations-section { margin-top: 40px; padding-top: 40px; }
    .expectations-main-title { font-size: 30px; }
    .expectations-intro { font-size: 16px; margin-bottom: 25px; }
    .classes-location-info { font-size: 15px; margin-bottom: 20px; }
    .map-container { margin-bottom: 40px; }
    .expectation-items-grid { grid-template-columns: 1fr; gap: 20px; }
    .expectation-item { padding: 20px; }
    .expectation-icon { width: 40px; }
    .expectation-item-title { font-size: 18px; }
    .expectation-item-description { font-size: 14px; }

    /* LIFE Group Hero */
    .life-group-hero { flex-direction: column; padding: 40px; text-align: center; }
    .life-group-hero .hero-content { padding-right: 0; }
    .life-group-hero .hero-actions { justify-content: center; }
    .life-group-hero .hero-image-area { margin-top: 30px; width: 100%; max-width: 450px; }
    .semester-info-bar { margin: 30px -40px -40px -40px; }
    .life-group-hero .main-title { font-size: 36px; }
    .life-group-hero .subtitle { font-size: 17px; }

  /* --- Learn About LIFE Groups Section --- */

.learn-more-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background-color: var(--color-white, #ffffff);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: visible; /* Added: Ensures content is not hidden if it somehow exceeds container */
    min-height: fit-content; /* Added: Ensures container height adapts to content */
}

.learn-more-container .section-title {
    font-size: 2.8em;
    color: var(--color-dark-text, #333);
    margin-bottom: 20px;
    font-weight: 700;
}

.learn-more-container .intro-paragraph {
    font-size: 1.1em;
    color: var(--color-dark-text, #555);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Specific Styling */
/* Assuming 'accordion-item' or a similar wrapper around header and content */
.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden; /* Ensures child border-radius applies nicely */
    border: 1px solid var(--color-border-light, #e0e0e0);
}

.accordion-header {
    background-color: var(--color-primary, #049ba4);
    color: var(--color-white, #fff);
    padding: 18px 25px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.25em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: var(--color-primary-dark, #037f87);
}

.accordion-title {
    font-size: 1em; /* Base font size from header will apply, this makes it relative */
    margin: 0;
}

/* If you have an icon in the header, like the FAQ section */
.accordion-header .icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

/* For the answer content (assuming a similar structure to FAQ answers) */
.accordion-content { /* Assuming you have a class like this for the answer */
    padding: 0 25px;
    background-color: var(--color-light-grey, #f9f9f9);
    border-left: 5px solid var(--color-primary, #049ba4);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 0; /* Hidden when collapsed */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
    padding: 20px 25px;
    max-height: 1000px; /* This is correctly set to 1000px for full expansion */
}

.accordion-content p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--color-dark-text, #333);
}

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

    /* Coaches Section */
    .coaches-section-container .section-title { font-size: 28px; }
    .coaches-section-container .section-subtitle { font-size: 17px; }
    .coach-card { width: calc(50% - 15px); }

    /* Life Groups Grid */
    .life-groups-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
    .life-group-overlay-title { font-size: 2.5em; }

    /* Baptism Hero */
    .hero-main-layout { flex-direction: column; padding: 30px 40px; align-items: center; }
    .hero-content { align-self: auto; text-align: center; }
    .expectations-list { text-align: left; justify-content: center; }
    .expectation-item { width: 100%; max-width: 400px; }
    .hero-actions { display: flex; justify-content: center; }
    .hero-image-area { margin-top: 30px; width: 100%; max-width: 450px; }
    .hero-top-tab-link { font-size: 15px; padding: 15px 10px; }
    .hero-content .main-title { font-size: 32px; }
    .hero-content .subtitle { font-size: 17px; }

    /* FAQ adjustments */
    .faq-container h1 { font-size: 2em; }
    .faq-question { font-size: 1em; padding: 12px 15px; }

    /* Contact adjustments */
    .contact-section h2 { font-size: 1.8em; }
    .contact-section h3 { font-size: 1em; }
    .contact-section .contact-btn { font-size: 1em; padding: 12px 25px; }

    /* Vision Team Hero */
    .serve-header h1 { font-size: 30px; }
    .ministry-description h2 { font-size: 24px; }
    .ministry-focus { flex-direction: column; align-items: center; }
    .ministry-focus.image-right .ministry-description { order: 1; }
    .ministry-focus.image-right .ministry-image { order: 2; }
    .ministry-image { flex: 0 0 auto; width: 100%; max-width: 450px; margin-bottom: 20px; }
    .ministry-description { text-align: center; min-width: 100%; }
    .ministry-description > p { text-align: center; }
    .ministry-actions-container,
    .global-register-button-container { margin-bottom: 20px; }
    .team-card.slide { padding: 20px 50px; min-height: 200px; }
    .team-card h3 { font-size: 20px; }
    .team-card p { font-size: 15px; }
    .slider-btn { width: 36px; height: 36px; font-size: 18px; }
    .slider-btn.prev-btn { left: 8px; }
    .slider-btn.next-btn { right: 8px; }
}

/* For screens up to 768px (e.g., smaller tablets, large phones) */
@media (max-width: 768px) {
    /* Header adjustments */
    .header-hero-banner { padding: 25px 20px; }
    .hero-banner-content-wrapper { flex-direction: column; gap: 25px; }
    .hero-banner-text-column { order: 2; text-align: center; align-items: center; margin-top: 15px; }
    .hero-banner-image-column { order: 1; width: 80%; max-width: 380px; }
    .hero-banner-info-text,
    .hero-banner-tagline { display: none; }
    .hero-banner-main-title { font-size: 42px; }

    .main-navigation { padding: 0; display: flex; justify-content: flex-end; align-items: center; }
    .mobile-menu-toggle { display: block; }
    .main-navigation ul { display: none; flex-direction: column; width: 100%; background-color: #009DA6; position: absolute; top: 100%; left: 0; z-index: 1000; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
    .main-navigation.nav-open ul { display: flex; }
    .main-navigation ul li { width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-navigation ul li:last-child { border-bottom: none; }
    .main-navigation ul li a { padding: 15px 20px; }
    .main-navigation ul li a.active-nav-item::after { bottom: 5px; }

    /* Life Groups Section */
    .life-groups-section { padding: 30px 15px; }
    .life-groups-header-title { font-size: 2.4em; }
    .life-groups-header-subtitle { font-size: 1em; }
    .life-groups-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .life-group-image-wrapper { height: 220px; }
    .life-group-overlay-title { font-size: 2.2em; margin-bottom: 15px; }
    .life-group-content { padding: 18px 20px; }
    .life-group-description { font-size: 0.9em; margin-bottom: 20px; }
    .life-group-button { padding: 10px 20px; font-size: 0.85em; }

    /* Coaches Section */
    .coach-card { width: 100%; }
    .coach-image { height: 350px; }

    /* Baptism Hero */
    .hero-main-layout { padding: 25px; }
    .hero-top-tab-bar { flex-direction: column; }
    .hero-top-tab-link { font-size: 16px; border-right: none !important; border-bottom: 3px solid transparent; }
    .hero-top-tab-link.active-top-tab{ border-bottom-color: #ffffff; }
    .hero-top-tab-link:not(:last-child){ border-bottom: 1px solid rgba(255,255,255,0.08); }
    .expectations-list { flex-direction: column; align-items: flex-start; }
    .expectation-item { width: 100%; max-width: none; }
    .hero-actions .hero-btn { width: 100%; }
    .info-bar { font-size: 14px; padding: 12px 15px; }

    /* Vision Team Hero */
    .serve-header h1 { font-size: 30px; }
    .ministry-description h2 { font-size: 24px; }
    .ministry-focus { flex-direction: column; align-items: center; }
    .ministry-focus.image-right .ministry-description { order: 1; }
    .ministry-focus.image-right .ministry-image { order: 2; }
    .ministry-image { flex: 0 0 auto; width: 100%; max-width: 450px; margin-bottom: 20px; }
    .ministry-description { text-align: center; min-width: 100%; }
    .ministry-description > p { text-align: center; }
    .ministry-actions-container,
    .global-register-button-container { margin-bottom: 20px; }
    .team-card.slide { padding: 20px 50px; min-height: 200px; }
    .team-card h3 { font-size: 20px; }
    .team-card p { font-size: 15px; }
    .slider-btn { width: 36px; height: 36px; font-size: 18px; }
    .slider-btn.prev-btn { left: 8px; }
    .slider-btn.next-btn { right: 8px; }
}

/* For screens up to 576px (e.g., small mobile phones) */
@media (max-width: 576px) {
    /* LIFE Group Hero */
    .life-group-hero { padding: 30px 25px; }
    .life-group-hero .main-title { font-size: 28px; }
    .life-group-hero .subtitle { font-size: 16px; }
    .life-group-hero .hero-actions { flex-direction: column; align-items: stretch; }
    .life-group-hero .hero-btn { width: 100%; justify-content: center; }
    .life-group-hero .hero-image-area { max-width: 100%; }
    .semester-info-bar { font-size: 14px; padding: 12px 15px; margin: 25px -25px -30px -25px; }
}

/* For screens up to 480px (e.g., smallest mobile phones) */
@media (max-width: 480px) {
    /* Header */
    .hero-banner-main-title { font-size: 32px; }

    /* Learn More Container */
    .learn-more-container { padding: 30px 20px; }
    .learn-more-container .section-title { font-size: 22px; }
    .accordion-title { font-size: 16px; }

    /* Coaches Section */
    .coaches-section-container .section-title { font-size: 24px; }
    .coaches-section-container .section-subtitle { font-size: 16px; }
    .coach-image { height: 300px; }
    .coach-info { padding: 20px 25px; }
    .coach-name { font-size: 20px; }
    .coach-role { font-size: 15px; }

    /* Life Groups Grid */
    .life-groups-header-title { font-size: 2em; }
    .life-groups-grid { grid-template-columns: 1fr; }
    .life-group-image-wrapper { height: 200px; }
    .life-group-overlay-title { font-size: 1.8em; margin-bottom: 10px; }

    /* Areas to Serve */
    .serve-container { padding: 20px 15px; }
    .serve-header h1 { font-size: 26px; }
    .serve-header .subtitle { font-size: 14px; }
    .ministry-description h2 { font-size: 22px; }
    .ministry-description > p { font-size: 16px; }
    .team-card.slide { padding: 15px 45px; min-height: 180px; }
    .team-card h3 { font-size: 18px; }
    .team-card p { font-size: 14px; }
    .slider-btn.prev-btn { left: 5px; }
    .slider-btn.next-btn { right: 5px; }
}/* End custom CSS */