.events-page-header {
    width: 100%;
    margin: 0;
    padding: 0;
}

.events-page-header img {
    width: 100%;
    height: auto;
    display: block;
}

.events-section-header {
    background-color: #f99659;
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.events-section-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
}

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

.event-card {
    background-color: white;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.event-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.event-details {
    flex: 1;
}

.event-details h2 {
    color: #f99659;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.event-details p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-calendar-button {
    background-color: #7798CD;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-calendar-button:hover {
    background-color: #5f7db3;
    transform: scale(1.05);
}

/* Impact Stats Section */
.impact-section {
    background-color: #f99659;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    color: white;
}

.impact-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 50px;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.stat-box h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.stat-box.money h3 {
    color: #f9ff3e;
}

.stat-box.supplies h3 {
    color: #ADE47A;
}

.stat-box.hours h3 {
    color: #7798CD;
}

.stat-box p {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .events-section-header h1 {
        font-size: 32px;
    }
    
    .event-details h2 {
        font-size: 26px;
    }
    
    .event-details p {
        font-size: 16px;
    }
    
    .impact-section h2 {
        font-size: 32px;
    }
    
    .stat-box {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .events-section-header h1 {
        font-size: 26px;
    }
    
    .event-details h2 {
        font-size: 22px;
    }
    
    .impact-section h2 {
        font-size: 28px;
    }
}
