* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f8f8;
    color: #17335d;
    line-height: 1.6;
}

.navbar {
    background: white;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo img {
    width: 70px;
    height: auto;
}

.nav-logo h1 {
    font-size: 24px;
    color: #17335d;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #17335d;
    font-weight: bold;
}

nav a:hover {
    color: #b88b3a;
}

.hero {
    min-height: 75vh;
    background: linear-gradient(rgba(23, 51, 93, .85), rgba(23, 51, 93, .85));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #b88b3a;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #9c742f;
}

.section {
    padding: 70px 10%;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.light {
    background: white;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.card h3 {
    margin-bottom: 15px;
    color: #17335d;
}

.pricing-box {
    max-width: 600px;
    margin: auto;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.pricing-box p {
    margin-bottom: 12px;
    font-size: 18px;
}

#contact p {
    margin-bottom: 12px;
    font-size: 18px;
}

#contact .btn {
    margin-top: 20px;
}

footer {
    background: #17335d;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }
}