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

:root {
    --deep-green: #002E23;
    --bright-lime: #92E21A;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--deep-green);
}

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

/* Header Styles */
.header {
    background-color: var(--deep-green);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--bright-lime), var(--bright-lime));
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--bright-lime);
    margin-top: -5px;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--bright-lime);
}

.register-btn {
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--deep-green) 0%, #003d2f 100%);
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="laptop-pattern" patternUnits="userSpaceOnUse" width="200" height="150"><rect width="200" height="150" fill="%23002E23" opacity="0.1"/><rect x="20" y="20" width="160" height="100" fill="%2392E21A" opacity="0.1"/><circle cx="100" cy="70" r="20" fill="%2392E21A" opacity="0.1"/></pattern></defs><rect width="1200" height="800" fill="url(%23laptop-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 46, 35, 0.8) 0%, rgba(0, 61, 47, 0.6) 100%);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--bright-lime);
    color: var(--deep-green);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(146, 226, 26, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--deep-green);
    transform: translateY(-3px);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.countdown-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-lime);
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Stats Strip */
.stats-strip {
    background-color: var(--deep-green);
    padding: 3rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Callout Banner */
.callout-banner {
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 3rem 0;
    text-align: center;
}

.callout-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.section-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Workshop Preview */
.workshop-preview {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    opacity: 0.8;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background-color: var(--deep-green);
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background-color: var(--deep-green);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a:hover {
    opacity: 1;
    color: var(--bright-lime);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--deep-green);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 95%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close {
    color: var(--white);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
}

.close:hover {
    opacity: 1;
}

.modal-content h2 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--bright-lime);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-lime);
    box-shadow: 0 0 0 2px rgba(146, 226, 26, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshop-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links ul {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--deep-green) 0%, #003d2f 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Overview */
.about-overview {
    padding: 2rem 0;
    background-color: var(--deep-green);
}

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

.mission-stat {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-stat:hover {
    transform: translateY(-5px);
}

.mission-stat .stat-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.mission-stat h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Our Story Timeline */
.our-story {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.our-story h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--bright-lime);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 120px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    align-self: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bright-lime);
}

.timeline-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.highlight {
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Our Objectives */
.our-objectives {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.our-objectives h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.objective-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.objective-item:hover {
    transform: translateY(-5px);
}

.objective-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.objective-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bright-lime);
}

.objective-item ul {
    list-style: none;
    margin-top: 1rem;
}

.objective-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.objective-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-lime);
    font-weight: bold;
}

/* Our Impact */
.our-impact {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.our-impact h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--bright-lime);
    margin-bottom: 0.3rem;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.impact-stat {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.impact-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-lime);
    margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Our Mentors */
.our-mentors {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.our-mentors h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.mentor-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.05);
}

.mentor-info {
    padding: 1.5rem;
}

.mentor-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--bright-lime);
}

.mentor-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mentor-bio {
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mentor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background-color: rgba(146, 226, 26, 0.2);
    color: var(--bright-lime);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mentors-cta {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 2rem;
}

.mentors-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bright-lime);
}

.mentors-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--deep-green);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: var(--white);
    color: var(--deep-green);
}

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

.cta-section .btn-secondary:hover {
    background-color: var(--deep-green);
    color: var(--white);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    
    .mentor-expertise {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .callout-banner h2 {
        font-size: 2rem;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* Workshop Page Styles */
.workshop-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.workshop-date i {
    color: var(--bright-lime);
    margin-right: 0.5rem;
}

.workshop-intro {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.highlight-item i {
    color: var(--bright-lime);
    font-size: 1.2rem;
}

.workshop-highlights {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.highlight-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bright-lime);
}

.highlight-card ul {
    list-style: none;
    margin-top: 1rem;
}

.highlight-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-lime);
    font-weight: bold;
}

/* Agenda Styles */
.agenda-overview {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--bright-lime);
    color: var(--deep-green);
}

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

.agenda-day {
    display: none;
}

.agenda-day.active {
    display: block;
}

.agenda-day h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--bright-lime);
}

.agenda-sessions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.session-time {
    flex: 0 0 120px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.session-content {
    flex: 1;
    padding: 1rem;
}

.session-content h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.session-content p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* What to Expect */
.what-to-expect {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.expectation-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
}

.expectation-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.expectation-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Who Can Attend */
.who-can-attend {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.category-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
}

.category-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.category-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bright-lime);
    font-weight: bold;
}

/* Registration CTA */
.registration-cta {
    padding: 4rem 0;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.benefit-item i {
    color: var(--deep-green);
    font-weight: bold;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.registration-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(0, 46, 35, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.registration-note i {
    margin-right: 0.5rem;
}

/* Responsive Design for Workshop Page */
@media (max-width: 768px) {
    .workshop-date {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .session {
        flex-direction: column;
    }
    
    .session-time {
        flex: none;
        text-align: center;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .attendee-categories {
        grid-template-columns: 1fr;
    }
    
    .registration-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .workshop-date {
        font-size: 0.9rem;
    }
    
    .agenda-day h3 {
        font-size: 1.5rem;
    }
    
    .session-time {
        font-size: 0.8rem;
    }
}

/* Partners Page Styles */
.lead-organizers {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.organizer-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.organizer-card:hover {
    transform: translateY(-5px);
}

.organizer-logo {
    flex: 0 0 150px;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.logo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.organizer-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bright-lime);
}

.organizer-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.organizer-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
}

.organizer-mission {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.organizer-mission h4 {
    font-family: var(--font-heading);
    color: var(--bright-lime);
    margin-bottom: 0.5rem;
}

.partner-categories {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.category-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.category-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-lime);
    font-weight: bold;
}

.current-partners {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.partner-logo {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partners-note {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-categories-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-category {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-5px);
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0;
    color: var(--bright-lime);
}

.category-description p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.category-description ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-description li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.category-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bright-lime);
    font-weight: bold;
}

.partnership-benefits {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partnership-invitation {
    padding: 4rem 0;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    text-align: center;
}

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

.partnership-type {
    background-color: rgba(0, 46, 35, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.partnership-type:hover {
    transform: translateY(-5px);
}

.type-icon {
    font-size: 3rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.partnership-type h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery Page Styles */
.photo-gallery {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--bright-lime);
    color: var(--deep-green);
}

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

.gallery-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img.team-photo {
    object-position: center 30%;
}

.gallery-img.audience-photo {
    object-position: center 25%;
}

.gallery-img.mentorship-photo {
    object-position: center 30%;
}

.gallery-image:hover .gallery-img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.mentorship-placeholder {
    background: linear-gradient(135deg, var(--bright-lime) 0%, #7BCB1A 100%);
    color: var(--deep-green);
}

.mentorship-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.video-gallery {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.video-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--deep-green);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.thumbnail-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--bright-lime);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.social-feed {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.social-post {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.social-post:hover {
    transform: translateY(-5px);
}

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

.post-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.post-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.2rem;
}

.post-info span {
    opacity: 0.7;
    font-size: 0.9rem;
}

.post-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.social-cta {
    text-align: center;
    margin-top: 2rem;
}

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

.social-links .social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

.gallery-cta {
    padding: 4rem 0;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    text-align: center;
}

/* News Page Styles */
.featured-articles {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card.featured {
    grid-column: span 2;
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category {
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    opacity: 0.7;
    font-size: 0.9rem;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--bright-lime);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

.latest-updates {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.updates-list {
    max-width: 800px;
    margin: 0 auto;
}

.update-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.update-item:hover {
    transform: translateY(-3px);
}

.update-date {
    flex: 0 0 80px;
    text-align: center;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.update-date .day {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.update-date .month {
    display: block;
    font-size: 0.9rem;
}

.update-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.update-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.update-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.industry-insights {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.insight-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.insight-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.insight-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.insight-stats .stat {
    background-color: var(--bright-lime);
    color: var(--deep-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-signup {
    padding: 4rem 0;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Page Styles */
.contact-info {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

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

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-detail {
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-media {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.social-links .social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease;
}

.social-links .social-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bright-lime);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.social-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.social-info p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.social-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bright-lime);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--bright-lime);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--deep-green);
    font-weight: bold;
    font-size: 0.8rem;
}

.faq-section {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--bright-lime);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.map-section {
    padding: 4rem 0;
    background-color: var(--deep-green);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--bright-lime);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.info-item i {
    color: var(--bright-lime);
    font-size: 1.2rem;
}

/* Responsive Design for All Pages */
@media (max-width: 768px) {
    .organizers-grid {
        grid-template-columns: 1fr;
    }
    
    .organizer-card {
        flex-direction: column;
        text-align: center;
    }
    
    .organizer-logo {
        align-self: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-categories-detailed {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-types {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card.featured {
        grid-column: span 1;
    }
    
    .update-item {
        flex-direction: column;
        text-align: center;
    }
    
    .update-date {
        align-self: center;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .organizer-highlights {
        flex-direction: column;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .update-tags {
        justify-content: center;
    }
    
    .insight-stats {
        flex-direction: column;
    }
}
