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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f8fafc;
}

a {
    color: inherit;
}

header {
    background: #ffffff;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: #374151;
}

nav a:hover {
    color: #0066cc;
}

main {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #0066cc, #0f4c81);
    color: #ffffff;
    text-align: center;
    padding: 90px 20px;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.hero p {
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid #ffffff;
}

.btn:hover {
    background: transparent;
    color: #ffffff;
}

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 65px 5%;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #0f4c81;
}

section p {
    max-width: 900px;
    margin-bottom: 15px;
}

section ul {
    margin-left: 20px;
}

section li {
    margin-bottom: 10px;
}

#layanan-utama {
    background: #ffffff;
}

#tentang-perusahaan,
#kenapa-netfid {
    background: #f8fafc;
}

#hubungi {
    background: #ffffff;
}

#hubungi a:not(.btn) {
    color: #0066cc;
}

footer {
    background: #111827;
    color: #ffffff;
    text-align: center;
    padding: 35px 5%;
}

footer p {
    margin-bottom: 15px;
}

footer nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

footer nav a {
    color: #d1d5db;
}

footer nav a:hover {
    color: #ffffff;
}

@media (max-width: 700px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 65px 20px;
    }

    section {
        padding: 50px 20px;
    }

    section h2 {
        font-size: 1.7rem;
    }
}

/* Final visual fix */
.hero h1 {
    color: #ffffff;
}

.hero p {
    color: #ffffff;
}

.hero a {
    color: #ffffff;
}


/* Override hero text */
section.hero h1 {
    color: #fff !important;
}

section.hero p {
    color: #fff !important;
}

section.hero a {
    color: #fff !important;
}

/* Final hero heading fix */
section.hero h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #ffffff;
    margin-top: 60px;
    padding: 35px 20px;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer p {
    margin: 5px 0;
    color: #d1d5db;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
