:root {
    --primary-color: #303994;
    --accent-color: #747abb;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #333;
    --font-family-headings: 'Inter', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

.main-nav .btn {
    color: var(--light-color) !important;
}

/* --- Get Started Hero --- */
.get-started-hero {
    background-color: var(--light-color);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 60px; /* Adjust for fixed header */
}

.get-started-hero h1 {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* --- Download Section --- */
.download-section {
    padding: 60px 0;
}

.download-card, .step-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 2rem;
}

.download-card h2, .step-card h2 {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.app-badges img {
    height: 60px;
    transition: transform 0.3s ease;
}

.app-badges a:hover img {
    transform: scale(1.05);
}

.web-app-link {
    margin-top: 1.5rem;
    color: #666;
}

.web-app-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.web-app-link a:hover {
    text-decoration: underline;
}
