/* =====================
   Base / Global Styles
===================== */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f3f3f3;
}

main {
    background: white;
    max-width: 1200px;
    margin: 60px auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* =====================
   Header & Navbar
===================== */
header {
    padding: 30px 70px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: inherit;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-links li {
    font-weight: 500;
    color: #444;
}

.nav-btn {
    background: black;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}

/* =====================
   Hero Section
===================== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 70px;
}

.hero-left {
    width: 50%;
}

.hero-right {
    width: 45%;
}

.hero-right img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-left p {
    margin-top: 20px;
    max-width: 400px;
    color: #555;
    line-height: 1.6;
}

.hero-note {
    display: block;
    margin-top: 15px;
    color: red;
}

/* =====================
   Hero Buttons
===================== */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #222;
}

.btn-secondary {
    background: none;
    border: none;
    font-weight: bold;
    color: #222;
    cursor: pointer;
}

.btn-secondary:hover {
    text-decoration: underline;
}

/* =====================
   Stats Section
===================== */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 50px 80px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 28px;
    color: #111;
}

.stat-box p {
    font-size: 14px;
    color: gray;
}

/* =====================
   Partners Section
===================== */
.partners {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
}

.partners img {
    height: 30px;
    opacity: 0.6;
}
