body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #333;
}

header {
    background: linear-gradient(90deg, #1f4fa3, #0fa3a3);
    padding: 20px 0;
    text-align: center;
    color: white;
}

header img {
    height: 80px;
}

nav {
    background: #0fa3a3;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(90deg, #1f4fa3, #0fa3a3);
    color: white;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    color: #1f4fa3;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    background: #0fa3a3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

footer {
    background: #1f4fa3;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}