/* ---------- Base Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- Global Styles ---------- */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #2c2c2c;
    line-height: 1.7;
    padding: 40px 20px;
}

/* Center content */
body>* {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Headings ---------- */
h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1f3c88;
}

h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 5px;
    color: #1f3c88;
}

h3 {
    font-size: 1rem;
    font-weight: normal;
    color: #555;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

/* ---------- Links ---------- */
a {
    color: #1f6ae1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Lists ---------- */
ul {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

/* ---------- Job Section Divider ---------- */
h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #1f6ae1;
    margin-top: 8px;
    border-radius: 5px;
}

/* ---------- Home Link ---------- */
a[href="./index.html"] {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 18px;
    border-radius: 6px;
    background: #1f6ae1;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

a[href="./index.html"]:hover {
    background: #174ea6;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    ul {
        padding: 15px 18px;
    }
}