/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Top bar */
.top-bar {
    background-color: #0a1e3f;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

.top-bar .contact-info span {
    margin: 0 1rem;
}

/* Navigation */
.navbar {
    background-color: #0a1e3f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #e2b007;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e2b007;
}

/* Hero section */
.hero {
    position: relative;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 30, 63, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #e2b007;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

.cta-button {
    display: inline-block;
    background-color: #e2b007;
    color: #0a1e3f;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c39a06;
}

/* Sections */
section {
    padding: 4rem 2rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0a1e3f;
    text-align: center;
}

section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.5;
}

/* About section */
.about p {
    text-align: center;
}

/* Services section */
.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: #0a1e3f;
}

.service-card p {
    color: #555;
}

/* Coverage section */
.coverage {
    background-color: #f5f7fa;
}

.coverage p {
    max-width: 900px;
}

/* Contact section */
.contact {
    background-color: #0a1e3f;
    color: #ffffff;
}

.contact h2 {
    color: #e2b007;
}

.contact p {
    max-width: 700px;
    color: #eaeaea;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"],
.contact textarea {
    color: #333;
}

.contact button {
    background-color: #e2b007;
    color: #0a1e3f;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #c39a06;
}

.contact-details {
    text-align: center;
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #0a1e3f;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .nav-links li {
        margin-left: 1rem;
    }
}