body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #1d1d1d;
    line-height: 1.6;
}

nav {
    background: #0d1b2a;
    padding: 18px 40px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    font-weight: bold;
    font-size: 15px;
}

.hero {
    background: white;
    padding: 80px 40px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 320px;
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0d1b2a;
}

.hero-text p {
    font-size: 22px;
    color: #444;
    margin-bottom: 35px;
    max-width: 700px;
}

.hero-buttons a {
    display: inline-block;
    padding: 14px 28px;
    margin-right: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #1b4d8c;
    color: white;
}

.btn-secondary {
    border: 2px solid #1b4d8c;
    color: #1b4d8c;
    background: white;
}

.hero-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
}

.trust-section {
    background: #eef3f8;
    padding: 60px 40px;
}

.trust-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.trust-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trust-card h3 {
    color: #0d1b2a;
    margin-bottom: 10px;
}

.services {
    padding: 80px 40px;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0d1b2a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #f5f7fa;
    padding: 30px;
    border-radius: 10px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1b4d8c;
}

.about {
    background: #eef3f8;
    padding: 80px 40px;
}

.about p {
    max-width: 900px;
    font-size: 20px;
}

footer {
    background: #0d1b2a;
    color: white;
    padding: 40px;
    text-align: center;
}

footer a {
    color: #8fc8ff;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    nav a {
        display: inline-block;
        margin-bottom: 8px;
        margin-right: 15px;
        font-size: 14px;
    }

    .hero {
        padding: 50px 24px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-container {
        gap: 25px;
    }

    .trust-section,
    .services,
    .about {
        padding: 50px 24px;
    }

    .section-title {
        font-size: 34px;
    }

    .about p {
        font-size: 18px;
    }
}