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

body {
    background: #90b9d4;
    color: #333;
    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);
}

#heading 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.5);
}

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

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

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

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

#div_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

#div_main > div {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e3c72;
}

#div_main > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.80);
}

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

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

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

footer h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #c9d6ec;
}

footer p {
    font-size: 1.05rem;
    color: #a8c3e8;
}

footer small {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #93b0d6;
}