
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #ffffff;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    background-color: #1E2A78;
    padding: 1em 0;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 50px;
}
nav a {
    color: #00B8D9;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    background: linear-gradient(135deg, #00B8D9, #1E2A78);
    color: white;
    text-align: center;
    padding: 4em 2em;
}
.cta-button {
    display: inline-block;
    background: #00B8D9;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1em;
}
.services, .about {
    padding: 3em 0;
}
.services h2, .about h2 {
    text-align: center;
    margin-bottom: 2em;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
}
.service-box {
    background: #f9f9f9;
    padding: 2em;
    border-left: 5px solid #00B8D9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-cta {
    text-align: center;
    padding: 4em 2em;
    background-color: #1E2A78;
    color: white;
}
