.events-section {
    background: #f8f9fa;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-image {
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #393185;
}

.event-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.event-btn:hover {
    background: #0b5ed7;
    color: #fff;
}

@media (max-width: 768px) {
    .event-image img {
        height: 220px;
    }

    .event-content {
        padding: 20px;
    }

    .event-title {
        font-size: 20px;
    }
}
