.navbar {
    background: linear-gradient(135deg, #1A2A3A 0%, #284767 100%);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #1B6480;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    text-decoration: underline;
}

.hero {
    background: #D9E3EB;
    color: #0E1A24;
    padding: 40px 0;
    text-align: left;
    min-height: auto;
    display: block;
    border-bottom: 2px solid #1B6480;
}

.hero-content {
    animation: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1B6480;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 8px;
    color: #7E93A0;
}

.hero-description {
    font-size: 15px;
    margin-bottom: 12px;
    color: #0E1A24;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: normal;
    transition: none;
    border: 1px solid #284767;
    cursor: pointer;
    font-size: 15px;
    background: #7E93A0;
    color: white;
}

.btn-primary {
    background: #1B6480;
    color: white;
    border: 1px solid #0E314A;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #1A2A3A;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: #A2B0B9;
    color: #1B6480;
    border: 1px solid #7E93A0;
    border-radius: 4px;
}

.btn-secondary:hover {
    background: #1B6480;
    color: white;
    transform: none;
}

.section-title {
    font-size: 22px;
    margin-bottom: 12px;
    text-align: left;
    color: #1B6480;
    position: relative;
    font-weight: bold;
}

.section-title::after {
    content: '';
    display: none;
}

.contact {
    padding: 20px 0;
    background: #D9E3EB;
    text-align: left;
}

.contact-text {
    font-size: 13px;
    color: #0E1A24;
    margin-bottom: 12px;
}

.contact-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

/* ============ Footer ============ */
.footer a {
    color: white;
    text-decoration: none;
    display: inline;
    margin: 0 10px 0 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
}

.footer a:hover {
    text-decoration: underline;
}

.footer p {
    margin: 0 10px 0 0;
    padding: 0;
    display: inline;
}

.footer p a {
    display: inline;
    margin: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 12px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .nav-links {
        gap: 10px;
        font-size: 13px;
    }

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

    .contact-buttons {
        flex-direction: row;
    }

    .hero-buttons {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .nav-links {
        flex-direction: row;
        gap: 8px;
    }

    .nav-brand {
        font-size: 15px;
    }
}
