* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

h1 {
    color: #2b6cb0;
    font-size: 2.5rem;
    margin: 40px 0 20px 0;
    font-weight: 700;
    text-align: center;
}

h2 {
    color: #2b6cb0;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    font-weight: 600;
    border-bottom: 3px solid #2b6cb0;
    padding-bottom: 10px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    color: #444;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
    background-color: white;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    padding: 15px 20px;
    margin: 10px 0;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a4d7a 100%);
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid white;
}

nav li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

footer {
    background: linear-gradient(135deg, #1a4d7a 0%, #0d2a47 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    font-size: 1.1rem;
    font-weight: 500;
}

