body {
    scroll-behavior: smooth;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.navbar {
    background-color: #002B5B;
    transition: background-color 0.4s ease;
}

.navbar.scrolled {
    background-color: #001F3F !important;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: #fff !important;
}

.header-img {
    height: 90vh;
    background: url('../images/head.jpg') no-repeat center center/cover;
    padding-top: 100px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.logo {
    width: 60px;
}

section {
    padding: 60px 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

section.animate__fadeInUp {
    opacity: 1;
}

section h2 {
    font-weight: bold;
    font-size: 36px;
    text-align: center;
    color: #d4af37;
    font-family: 'Gambetta', serif;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

section p,
section ul {
    font-size: 1.1rem;
    line-height: 1.8;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #002B5B;
    font-size: 18px;
}

footer {
    background-color: #002B5B;
    color: #fff;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 10px;
}

.email {
    color: #ffc107;
}

.white-logo {
    width: 50%;
    margin-bottom: 20px;
}

.pp {
    color: #776d6d;
}

@media screen and (max-width: 767px) {
    .header-img h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 28px;
    }

    .custom-list li {
        font-size: 16px;
    }
}