body {
    background-color: #2c2c2c;
}

.section-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0;
}

h1 {
    color: #fff;
    font-size: 4rem;
    margin: 0;
    width: 100%;
    text-align: center;
}

.standout {
    color: #CA3433;
}

.section-1 p {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 1rem;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.section-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 70%;
    margin: 2rem auto 0 auto;
}

.inner-section-2 {
    display: flex;
    flex-direction: column;
}

.section-2 h2, .section-2 p, .section-2 h3 {
    margin: 0;
    color: white;
}

.section-2 h2, .section-2 p {
    margin-bottom: 1rem;
}

.inner-section-2-white {
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.inner-section-2-white h2, .inner-section-2-white p {
    color: #000;
    margin: 0;
}

.inner-section-2-white a {
    text-align: center;
}



.section-4 {
    width: 70%;
    margin: 3rem auto 3rem auto;
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    padding: 2rem;
}

.section-4 h2, .section-4 p {
    margin: 0;
}

/* Overwrite events css */
.events-row {
    margin: 0 !important;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .section-1 {
        width: 90%;
        margin-inline: auto;
        height: 60vh;
    }

    .section-2 {
        grid-template-columns: 1fr;
        width: 90%;
        margin-inline: auto;
    }

    .section-3 {
        grid-template-columns: 1fr;
        margin-inline: auto;
        width: 90%;
        margin-inline: auto;
    }
}