/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111;
}

/* ---------------- HEADER ---------------- */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FIXED LOGO SIZE (clean + balanced) */
.logo img {
    height: 65px;   /* ← Perfect balanced size */
    object-fit: contain;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.header-offset {
    height: 100px; /* Prevent content from hiding behind header */
}

/* ---------------- HERO ---------------- */
.hero {
    background: #0d6efd;
    color: white;
    padding: 120px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
}

/* ---------------- HOW IT WORKS ---------------- */
.section {
    padding: 80px 40px;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    background: #ffffff;
    width: 260px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* ---------------- FAQ ---------------- */
.faq-item {
    max-width: 700px;
    margin: 20px auto;
    text-align: left;
}

/* ---------------- FOOTER ---------------- */
.footer {
    padding: 40px;
    text-align: center;
    background: #f5f5f7;
    color: #777;
}

.footer a {
    color: #007bff;
}
