* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #a2b9da;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

header {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: white;
    padding: 40px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

nav ul li {
    background: #ffffff;
    color: #1e3c72;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

nav ul li:hover {
    background: #a2b9da;
    color: white;
}

main {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

main ul {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    list-style-type: none;
}

main > ul > li {
    margin-bottom: 30px;
}

main ul li b,
main ul li strong {
    font-size: 1.3rem;
    color: #1e3c72;
}

main ul ul {
    margin-top: 15px;
    padding-left: 20px;
}

main ul ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #333;
}

a {
    color: #2a5298;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

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

footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}

footer p {
    font-size: 1.1rem;
    color: #c9d6ec;
}

footer span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #9eb5d3;
}