
.events-container {
    background: linear-gradient(135deg, var(--bs-gray-50) 0%, var(--bs-body-bg) 100%);
    min-height: 90vh;
    padding: 3rem 0;
}

.events-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bs-body-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
}

.events-icon {
    font-size: 4rem;
    color: #0047FF;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.events-title {
    color: var(--bs-body-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.events-subtitle {
    color: #D10000;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.events-message {
    text-align: left;
    margin-top: 2rem;
}

.events-announcement {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.08) 0%, rgba(209, 0, 0, 0.08) 100%);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.announcement-icon {
    font-size: 3rem;
    color: #D10000;
    margin-bottom: 1rem;
}

.events-announcement h3 {
    color: #0047FF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.events-interest-section {
    background: var(--bs-gray-100);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.events-interest-section h3 {
    color: #D10000;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(209, 0, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #D10000;
    font-size: 1.1rem;
}

.events-types {
    margin: 3rem 0;
}

.events-types h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.event-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
}

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

.event-icon {
    font-size: 2.5rem;
    color: #0047FF;
    margin-bottom: 1rem;
}

.event-card h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.event-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.events-actions {
    margin: 3rem 0;
}

.events-actions h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.action-card .btn {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .action-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .action-card .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .action-cards {
        gap: 1rem;
    }
    
    .action-card {
        padding: 1rem;
    }
    
    .action-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .action-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .action-card .btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

.action-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.action-card.primary {
    border-color: #25d366;
}

.action-card.secondary {
    border-color: #0047FF;
}

.action-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-card.primary i {
    color: #25d366;
}

.action-card.secondary i {
    color: #0047FF;
}

.action-card h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #D10000;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.events-urgent-contact {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.urgent-message i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.urgent-message h4 {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 1rem;
}

.urgent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

@media (max-width: 768px) {
    .events-wrapper {
        padding: 2rem 1rem;
    }
    
    .events-title {
        font-size: 2rem;
    }
    
    .action-cards,
    .events-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}