:root {
    --green: #0b8a6a;
    --yellow: #facc15;
    --dark: #0f172a;
    --muted: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: var(--dark);
}

/* ================= HEADER ================= */
header {
    background: var(--green);
    width: 100%;
    padding: 14px 0;
    color: #fff;
}

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

@media (max-width: 768px) {
    .header-content {
        padding: 0 24px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.logo-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 4px;
    transform: rotate(45deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language {
    font-size: 14px;
    cursor: pointer;
}

.search-btn {
    background: var(--yellow);
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 70vh;
    background-image: url("../../images/header-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

/* Soft white overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero p {
    max-width: 780px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 36px;
}

.cta {
    background: #000;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* ================= INFO SECTION ================= */
.info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px 80px;
}

@media (max-width: 768px) {
    .info {
        padding: 60px 24px 80px;
    }
}

.info p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 20px;
}

.email {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}

.email a {
    color: #000;
    text-decoration: underline;
}

.info ul {
    list-style: disc;
    padding-left: 22px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .email {
        font-size: 22px;
    }
}

