/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    /* Removed global color: #fff; as it conflicts with other sections */
}

.container {
    /* Adding a container definition for consistent centering */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.hero {
    height: 70vh;
    background: url("/media/headers/get_involved.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SECTION DIVIDER */
.section-divider {
    height: 2px;
    background: #bfa98a;
    border: none;
    width: 100px;
    margin: 0 auto;
}

/* LIST */
.involve-section ul li {
    line-height: 1.8;
}

/* HIGHLIGHT BOX */
.highlight-box {
    border: 1px solid #bfa98a;
    padding: 30px;
    border-radius: 6px;
    background-color: #fff8f0;
    max-width: 600px;
    margin: 40px auto 0 auto;
}

.highlight-box p:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}






