:root {
    --navy: #002046;
    --gold: #FFD700;
    --white: #ffffff;
    --light-grey: #f4f7f9;
    --text: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background-color: var(--navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #003366 100%);
    color: var(--white);
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn {
    background-color: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #e6c200;
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-grey);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--navy);
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
}

.section p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* App Card */
.app-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.app-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

/* Privacy Box */
.privacy-box {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--navy);
}

.privacy-box h3 {
    margin-top: 25px;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav ul {
        display: none;
    }
}
