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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
    line-height: 1.7;
}

/* HERO SECTION */
.hero {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h1 {
    color: #fff;
    font-size: 44px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.overlay p {
    color: #e0e0e0;
    font-size: 18px;
}

/* MAIN CONTENT */
.container {
    max-width: 1000px;
    margin: -90px auto 50px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* INTRO TEXT */
.intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* SECTION HEADINGS */
h2 {
    font-size: 20px;
    color: #1a2a6c;
    margin-top: 35px;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 4px solid #1a2a6c;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
h2:hover {
    color: #b21f1f;
    border-left-color: #b21f1f;
}

/* PARAGRAPHS */
p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

/* LISTS */
ul {
    margin: 10px 0 20px 25px;
}

ul li {
    margin-bottom: 8px;
}

/* CONTACT BLOCK */
.contact-box {
    margin-top: 30px;
    padding: 20px;
    background: #f9fbff;
    border-left: 4px solid #1a2a6c;
    border-radius: 6px;
}

/* FOOTER NOTE */
.footer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #888;
}

/* SMOOTH READING WIDTH */
.container p,
.container li {
    max-width: 850px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        height: 260px;
    }

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 14px;
    }

    .container {
        margin: -60px 15px 30px;
        padding: 25px;
    }

    h2 {
        font-size: 18px;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
    .overlay h1 {
        font-size: 22px;
    }

    .container {
        padding: 20px;
    }
}