/* Base Reset & Layout */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f8fb;
    color: #333;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.cta-btn,
button {
    background-color: #004471;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-btn:hover,
button:hover {
    background-color: #002c50;
}

html, body { margin: 0; padding: 0; scroll-behavior: smooth; font-family: sans-serif; }

#scroll-indicator {
    background-color: #004471; /* Match your primary brand color */
}