* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: #0b3c5d;
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
                url('../assets/hero.jpg') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section {
    padding: 70px 0;
}

.section.light {
    background: #f7f9fc;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0b3c5d;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card, .testimonial {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.btn {
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0b3c5d;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
}

.footer {
    background: #0b3c5d;
    color: white;
    text-align: center;
    padding: 20px;
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}
.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.ceo-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.ceo-content h3 {
    margin-bottom: 10px;
    color: #0b3c5d;
}

@media(max-width: 768px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-image img {
        margin: auto;
    }
}
