.events-hero {
    position: relative;
    background: url('IMG20200704194902.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.events-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.events-hero-content {
    position: relative;
    z-index: 1;
}

.events-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.events-hero-content p {
    font-size: 1.2rem;
    color: #ddd;
}

.events-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
    color: #03053f;
}

.events-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.events-container p.description {
    color: #555;
    margin-bottom: 2rem;
}

.events-card {
    margin-bottom: 4rem;
}

.events-card a {
    text-decoration: none;
}

.events-card img {
    width: 100%;
    border-radius: 1rem;
}

.events-card h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.events-card p {
    color: #666;
    margin: 1rem 0;
}

.events-card button {
    background-color: #03053f;
    color: white;
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.events-card button:hover {
    background-color: #000122;
}

@media (max-width: 768px) {
    .events-hero-content h1 {
        font-size: 2rem;
    }
    .events-hero-content p {
        font-size: 1rem;
    }
}