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

:root {
    /* Forest-inspired color palette */
    --forest-green: #2d5d3d;
    --sage-green: #7a9e7a;
    --earth-brown: #8b4513;
    --warm-cream: #f5f3f0;
    --deep-forest: #1a3d2e;
    --moss-green: #4f7942;
    --bark-brown: #5d4037;
    --sky-blue: #87ceeb;
    --sunset-orange: #d2691e;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-padding: 0 2rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--deep-forest);
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a nice parallax effect */
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo .logo-text {
    color: var(--warm-cream);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--warm-cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sage-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sage-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--warm-cream);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    width: 100%;
    margin-top: 80px; /* Account for fixed navbar */
    background: var(--warm-cream);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Reduced darkness */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 11;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem); /* Larger font size */
    color: var(--warm-cream);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 1000px;
    margin: 0 auto 1rem; /* Add margin to the bottom */
    line-height: 1.2;
    font-weight: 700; /* Bolder */
    letter-spacing: 1px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--warm-cream);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 1rem;
    text-transform: none; /* Ensure tagline is not capitalized */
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #f0f0f0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
    transition: filter 0.3s ease, transform 0.1s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.carousel-slide img:hover {
    filter: brightness(1) contrast(1.15) saturate(1.2);
}

/* Image loading optimization */
.carousel-slide img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide img[loading="lazy"].loaded {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 2rem;
    z-index: 15;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(45, 93, 61, 0.8);
    color: var(--warm-cream);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--forest-green);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 15;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.dot.active,
.dot:hover {
    background: var(--warm-cream);
    border-color: var(--warm-cream);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main-content > section {
    background: rgba(245, 243, 240, 0.95); /* Slightly transparent warm cream */
    margin: 2rem auto;
    padding: var(--section-padding);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 1200px;
}

.main-content {
    padding-top: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--forest-green);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), var(--moss-green));
    border-radius: 2px;
}

/* Intro Section */
.intro-section {
    padding: var(--section-padding);
    background: transparent;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-text .text-link {
    color: var(--sage-green);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.intro-text .text-link:hover {
    color: var(--moss-green);
    text-decoration: underline;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.benefits-list li {
    padding: 0.4rem 0;
    font-size: 1.1rem;
    padding-left: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    background: none;
    border: none;
}

.benefits-list li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--forest-green);
}

/* Quotes Section */
.quotes-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1.5rem;
}

.quote-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--sage-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}

.quote-item p {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.quote-item .author {
    font-weight: bold;
    color: var(--forest-green);
    text-align: right;
}

/* Schedule Section */
.schedule-section {
    padding: var(--section-padding);
    background: transparent;
}

.schedule-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    border-top: 5px solid var(--sage-green);
}

.schedule-card h3 {
    font-family: var(--font-heading);
    color: var(--forest-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.schedule-card em {
    color: var(--moss-green);
    font-size: 0.9rem;
}

/* Pricing Section within Schedule Card */
.pricing-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--sage-green);
}

.pricing-title {
    font-family: var(--font-heading);
    color: var(--sunset-orange);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.early-bird-highlight {
    background: linear-gradient(135deg, var(--sunset-orange), #ff8c42);
    color: white;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    position: relative;
    overflow: hidden;
}

.early-bird-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.highlight-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    padding: 0.8rem;
    background: rgba(122, 158, 122, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--sage-green);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 158, 122, 0.2);
}

.pricing-icon {
    font-size: 1.3rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.pricing-text {
    font-size: 1rem;
    color: var(--deep-forest);
    line-height: 1.5;
}

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

.pricing-link:hover {
    color: var(--forest-green);
    text-decoration: underline;
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 768px) {
    .pricing-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.2rem;
    }
    
    .early-bird-highlight {
        padding: 1rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .pricing-details {
        gap: 0.8rem;
    }
    
    .pricing-item {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: transparent;
    color: var(--deep-forest);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: var(--sunset-orange);
    color: white;
}

.btn-primary:hover {
    background: #ff7f50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--forest-green);
    color: var(--warm-cream);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--deep-forest);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--sage-green);
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding);
    background: transparent;
    text-align: center;
}

.mission-section h2 {
    font-family: var(--font-heading);
    color: var(--forest-green);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(122, 158, 122, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--sage-green);
}

/* Footer */
.footer {
    background: var(--deep-forest);
    color: var(--warm-cream);
    padding: 2rem 0 1rem;
    border-radius: 15px 15px 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--sage-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo .logo-text {
    color: var(--sage-green);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-left: 10px;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--sage-green);
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sage-green);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content > section {
        border-radius: 0;
        margin: 1rem 0;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--forest-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-content > section {
        border-radius: 0;
    }

    .hero-header {
        min-height: 15vh;
        margin-top: 70px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .schedule-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    :root {
        --container-padding: 0 1rem;
        --section-padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

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

.intro-section,
.schedule-section,
.mission-section {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.carousel-btn:focus {
    outline: 2px solid var(--sunset-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .carousel-section,
    .cta-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        background-image: none;
    }
}

/* Additional Page Styles */
.page-main {
    margin-top: 80px;
    padding: var(--section-padding);
}

.page-main > .container > section {
    background: rgba(245, 243, 240, 0.95); /* Slightly transparent warm cream */
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--warm-cream);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--warm-cream);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.resource-section > h2, .resource-section > p,
.faq-category > .category-header > h2 {
    color: var(--warm-cream);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


/* Contact Page Styles */
.contact-layout {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--moss-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--forest-green);
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.schedule-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.schedule-item h3 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.schedule-note {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Page Styles */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2rem;
}

.category-header h2 {
    color: var(--forest-green);
    font-family: var(--font-heading);
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--moss-green);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

.still-have-questions {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.question-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Resources Page Styles */
.resources-content {
    max-width: 1000px;
    margin: 0 auto;
}

.resource-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--warm-cream);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-family: var(--font-heading);
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.resource-item h3 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.resource-author {
    font-style: italic;
    color: var(--moss-green);
    margin-bottom: 1rem;
}

.resource-description {
    color: #555;
    margin-bottom: 1rem;
}

.resource-category {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.activity-sections,
.location-sections {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.activity-group,
.location-group {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.activity-group h3,
.location-group h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.activity-list,
.location-list {
    list-style: none;
    padding-left: 0;
}

.activity-list li,
.location-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.activity-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
}

.location-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.steps-container {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: var(--forest-green);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.join-community {
    background: linear-gradient(135deg, var(--sage-green), var(--moss-green));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.join-community .section-header h2,
.join-community h3 {
    color: white;
}

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

.community-option {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.community-option .btn {
    margin-top: 1rem;
}

/* Form Styles for Contact Page */
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.contact-form-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
    font-weight: 600;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: var(--sage-green);
}

.quick-faq-section {
    margin-top: 3rem;
}

.quick-faq-section .faq-items {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-faq-section .faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-faq-section .faq-item h3 {
    color: var(--forest-green);
    margin-bottom: 0.75rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .question-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .community-options {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-sections,
    .location-sections {
        grid-template-columns: 1fr;
    }
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--sage-green);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    color: var(--forest-green);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-info h4 {
    color: var(--moss-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: #666;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
}

.team-bio {
    text-align: left;
    margin-top: 1rem;
}

.team-bio p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-bio p:last-child {
    margin-bottom: 0;
}

.team-bio .text-link {
    color: var(--sage-green);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-bio .text-link:hover {
    color: var(--moss-green);
}

/* Responsive team styles */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    /* Hero Carousel Mobile Styles */
    .hero-carousel-section {
        margin-top: 70px; /* Smaller navbar height on mobile */
    }
    
    .carousel-container {
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 5vw, 2rem);
        padding: 1rem;
        line-height: 1.3;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .carousel-dots {
        bottom: 1rem;
        gap: 0.6rem;
        padding: 0 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: clamp(1rem, 6vw, 1.5rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-dots {
        gap: 0.4rem;
        flex-wrap: wrap;
        max-width: 95%;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}
