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

body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    padding-inline: 20px;
    margin: auto;
}

.navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #004080;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    background: url('/img/banner.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    max-width: none;
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    margin-left: 40px;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 500px;
}

.hero h1 {
    font-size: 2em;
    color: #004080;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.hero a {
    background: #004080;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero {
        align-items: start;
    }

    .hero-content {
        margin: auto;
        margin-top: 6em;
    }
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    font-size: 2em;
    color: #004080;
    margin-bottom: 20px;
    text-align: center;
}

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

.feature-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-box h3 {
    margin-bottom: 1em;
}

.contact-form {
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    margin-top: 15px;
    background: #004080;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0059b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #f0f0f0;
    margin-top: 40px;
}

footer a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

footer a:hover {
    color: #0077cc;
}

.all-content {
    letter-spacing: 0.1px;
    max-width: 80%;
}

.all-content h4 {
    margin-top: 0em;
    margin-bottom: 0em;
    font-size: 2em;
    line-height: 1.18em;
    font-weight: 700;
}


.bullet {
    color: var(--text-color);
    display: flex;
    align-items: start;
    gap: 0.5em;
    font-weight: 400;
}


.under-sub {
    width: 90%;
    margin: auto;
}
@media screen and (max-width: 768px) {
    .all-content {
        max-width: 100%;
    }

    .p-title {
        font-size: 1.5em;
        text-align: center;
    }

    .all-content h4 {
        font-size: 1.2em;
    }
}