body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

.header {
    background-color: #003366;
    color: white;
    padding: 1.5em 0;
}

    .header .container {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header nav a {
        color: white;
        text-decoration: none;
        margin-left: 1.5em;
        font-weight: 500;
    }

.hero-global {
    background: linear-gradient(to right, #003366, #0059b3);
    color: white;
    padding: 5em 0;
    text-align: center;
}

    .hero-global h1 {
        font-size: 2.5em;
        margin-bottom: 0.5em;
    }

    .hero-global p {
        font-size: 1.2em;
        max-width: 600px;
        margin: 0 auto 2em;
    }

.btn {
    background-color: #ffc107;
    color: #000;
    padding: 0.7em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.features, .about-global, .cta {
    padding: 3em 0;
    text-align: center;
}

    .features h2, .about-global h2, .cta h2 {
        font-size: 2em;
        margin-bottom: 1em;
    }

.feature-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.feature {
    background: white;
    border: 1px solid #ddd;
    padding: 1.5em;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.about-global p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

.cta {
    background-color: #0059b3;
    color: white;
}

.footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
}
