* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 40px;
}

header {
    position: relative;
    background: linear-gradient(90deg, #1e5631, #2d8659);
    color: #fff;
    text-align: center;
    padding: 60px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.2;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519750783826-e2420f4d687f?crop=entropy&fit=crop&w=1200&h=400') no-repeat center/cover;
    opacity: 0.1;
    z-index: 0;
}

.header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1.5s ease-out;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.info-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2d8659, #44b678);
    border-radius: 15px 15px 0 0;
}

.info-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.event-dates, .event-location {
    font-size: 1.5rem !important;
    color: #44b678 !important;
    text-align: center;
    margin: 10px 0 !important;
}



.info-section .contact-details {
    margin-top: 20px;
    font-weight: 600;
    color: #e0e0e0;
}

.info-section .contact-details a {
    color: #2d8659;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section .contact-details a:hover {
    color: #44b678;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    margin: 0 auto;
    flex: 1;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

        .card-img {
            width: 220px;
            height: auto;
            margin-left: 20px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            order: 2; /* Move image to the right on desktop */
        }

.card-content {
    padding: 25px;
    flex: 1;
    order: 1; /* Content on the left on desktop */
}

.card-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-info {
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.8;
}

.card-info p {
    margin: 8px 0;
}

.value-section {
    margin: 20px 0;
    padding: 15px;
    background: rgba(68, 182, 120, 0.1);
    border-radius: 8px;
    border-left: 4px solid #44b678;
}

.value-section h3 {
    color: #44b678;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.value-section li {
    color: #d0d0d0;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.value-section li:before {
    content: "•";
    color: #44b678;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.event-details {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.event-details p {
    margin: 5px 0;
    color: #e0e0e0;
}

.call-to-action {
    font-size: 1.2rem !important;
    color: #44b678 !important;
    font-weight: 600 !important;
    margin: 20px 0 10px 0 !important;
}

.cta-subtitle {
    color: #b0b0b0 !important;
    font-style: italic;
    margin-bottom: 20px !important;
}

.subtitle {
    color: #44b678;
    font-size: 1.1rem;
    margin: -10px 0 15px 0;
    font-style: italic;
}

.card-button {
    display: inline-block;
    padding: 12px 25px;
    background: #1e5631;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-button:hover {
    background: #2d8659;
    transform: scale(1.05);
}

footer {
    background: linear-gradient(90deg, #1a1a1a, #2c3e50);
    color: #e0e0e0;
    text-align: center;
    padding: 30px;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 8px 0;
}

footer a {
    color: #2d8659;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #44b678;
}

        @media (max-width: 768px) {
            body {
                padding: 20px;
            }

            .card {
                flex-direction: column;
                align-items: flex-start;
            }

            .card-img {
                width: 100%;
                height: auto;
                max-height: 300px;
                margin-left: 0;
                margin-top: 0;
                margin-bottom: 20px;
                object-fit: contain;
                order: 1; /* Image first on mobile */
            }

            .header-logo-container {
                flex-direction: column;
                gap: 20px;
            }

            .header-logo {
                max-width: 150px;
            }

            .info-section {
                padding: 20px;
                margin-bottom: 30px;
            }

            .info-section h2 {
                font-size: 1.5rem;
            }

            .info-section p {
                font-size: 1.1rem;
            }

            .card-content {
                padding: 20px;
                order: 2; /* Content second on mobile */
            }

            .card-title {
                font-size: 1.5rem;
            }

            .container {
                padding: 10px;
                gap: 20px;
            }
        } 

/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #44b678;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #44b678;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #d0d0d0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main countdown styles */
.main-countdown {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-countdown h3 {
    color: #44b678;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Event countdown styles */
.event-countdown {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: rgba(68, 182, 120, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(68, 182, 120, 0.3);
}

.event-countdown h4 {
    color: #44b678;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive countdown */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .main-countdown {
        padding: 20px;
        margin: 20px 0;
    }
    
    .main-countdown h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
} 