/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    padding-top: 80px; /* space for fixed navbar */
}

/* NAVBAR */
.custom-nav {
    background-color: #fff;
}

.logo {
    height: 55px;
}

.nav-link {
    color: #083A8C !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4D8DFF !important;
}

.navbar .btn-outline-primary {
    border-color: #083A8C;
    color: #083A8C;
}

.navbar .btn-outline-primary:hover {
    background-color: #083A8C;
    color: #fff;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(to right, #0B4DBA, #083A8C);
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    color: #0B4DBA;
    font-weight: bold;
}

/* ABOUT */
.about {
    background-color: #fff;
    color: #000;
    padding: 80px 20px;
}

.about h2 {
    color: #0B4DBA;
    margin-bottom: 20px;
}

/* CONTACT */
.contact {
    background-color: #0B4DBA;
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    color: #fff;
}

.contact p {
    color: #E0E0E0;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    background-color: #fff;
    color: #0B4DBA;
    border: none;
    padding: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #4D8DFF;
    color: #fff;
}

/* FOOTER */
.footer {
    background-color: #000;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero {
        text-align: center;
    }
}
