/* ---------- Global Styles ---------- */
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    /* background-color: #f5f7fa; */
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);

    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* ---------- Container ---------- */
.container {
    max-width: 900px;
    margin: 80px auto;
    background-color: #ffffff;
    padding: 45px 55px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.container:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ---------- Typography ---------- */
h1 {
    color: #1e293b;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

h2,
h3 {
    color: #334155;
    margin-top: 30px;
    font-weight: 600;
}

p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: justify;
}

ul {
    margin: 15px 0 20px 25px;
    color: #475569;
    font-size: 1rem;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ---------- Section Divider ---------- */
hr {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
    .container {
        margin: 60px 25px;
        padding: 35px 40px;
    }

    h1 {
        font-size: 1.9rem;
    }

    p,
    li {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 40px 15px;
        padding: 25px;
        border-radius: 12px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p,
    li {
        font-size: 0.95rem;
    }
}