  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


body {
    background: url('/res/img/backgrounds/bg2.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

hr {
    border: 0;
    height: 5px;
    background-color: #cda757;
    margin-bottom: 20px;
}

/* --- Section Layout --- */
#strat {
    max-width: 1500px;
    margin: 80px auto;
    padding: 0 20px;
}

/* --- Head Section --- */
.strat-head {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -150px;
}

.strat-head h2 {
    font-size: 3rem;
    color: #122348;
    letter-spacing: 1px;
}

/* --- Content Layout --- */
.content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* --- Image Styling --- */
.content img {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* --- Narrative Styling --- */
.narrative {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 50px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.narrative h3 {
    font-family: "Bree Serif", serif;
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 10px;
    text-align: center;
}

.narrative p {
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
    margin-top: 20px;
}

/* --- Text Highlights --- */
b,
i {
    color: #122348
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    #strat {
        margin: 60px auto;
        padding: 0 15px;
    }

    .narrative {
        padding: 25px 20px;
    }

    .narrative h3 {
        font-size: 1.2rem;
    }

    .narrative p {
        font-size: 0.95rem;
    }

    .content img {
        max-width: 100%;
    }
}

#header,
#footer {
    width: 100%;
    height: 80px;
}