/* General Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #56ccf2, #2f80ed);
    color: white;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #2d9cdb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #195f91;
}

header h1 {
    font-size: 2.8em;
    margin: 0;
    animation: fadeInDown 1.5s;
    color: #ffffff;
    letter-spacing: 1px;
}

header p {
    font-size: 1.3em;
    animation: fadeIn 2s;
    margin-top: 5px;
    color: #e3f2fd;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(45, 156, 219, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s;
}

section h2 {
    border-bottom: 3px solid #195f91;
    padding-bottom: 5px;
    font-size: 1.6em;
    color: #e3f2fd;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    padding: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

ul li:hover {
    transform: translateX(10px);
    background-color: #1c4e80;
    border-radius: 5px;
}

a {
    color: #f7f7f7;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
}

a:hover {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

button {
    background-color: #195f91;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0d3358;
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #195f91;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    color: #e3f2fd;
    animation: fadeInUp 1.5s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
