/* Global Styles & Variables */
:root {
    --primary-color: #4CAF50; /* Green */
    --primary-bg: #fff;
    --text-color: #333;
    --text-muted: #666;
    --bg-light: #f9f9f9;
    --btn-bg: linear-gradient(to right, #338F1D, #6D1CE7);
    --btn-hover-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.46);
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--primary-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: #fff; }
.text-muted { color: var(--text-muted); }

.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.my-20 { margin: 20px 0; }

.bg-light { background-color: var(--bg-light); padding: 40px 0; }

.section {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
}

.section-subtitle {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav ul {
    display: flex;
    gap: 20px;
}

.nav a {
    font-weight: 500;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--btn-bg);
    color: #fff;
    border-radius: 50px;
}

.btn-primary i {
    margin-right: 8px;
}

.btn-xl {
    font-size: 1.4rem;
    padding: 15px 40px;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 10px 30px;
}

.shadow-hover:hover {
    box-shadow: var(--btn-hover-shadow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: #2a2a2a; /* Dark background similar to the image's bounding context */
    padding: 60px 0;
}

.hero-image {
    max-width: 500px;
    margin: 30px auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-image figcaption {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Box Shadow Card Elements */
.box-shadow-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.disclaimer-text {
    font-size: 1rem;
}

.underline {
    text-decoration: underline;
}

/* App Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.app-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 15px;
}

.app-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

.app-card .bonus-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #d32f2f; /* Reddish for emphasis */
}

.btn-download {
    background: #333;
    color: #fff;
}

.btn-download:hover {
    background: #555;
}

/* Policy Links */
.policy-links a {
    margin: 0 15px;
    font-weight: 500;
    color: #0066cc;
    text-decoration: underline;
}

/* FAQ */
.faq-question {
    font-size: 1.25rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #f1f1f1;
    padding: 40px 0 20px;
    border-top: 1px solid #ddd;
}

.footer-logo img {
    height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-xl {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}
