/*
Theme Name: ACA Enroll Help
Theme URI: https://acaenrollhelp.us
Author: SATECH
Description: Official-style, clean blue/white theme for ACA enrollment.
Version: 1.0
*/

:root {
    --primary: #005ea2; /* Federal Blue */
    --accent: #d0021b; /* Official Red */
    --bg-light: #f0f0f0;
    --text-dark: #1b1b1b;
    --white: #ffffff;
}

body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    border-bottom: 4px solid var(--accent);
    padding: 20px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-flag {
    font-size: 1.5rem;
    margin-right: 10px;
}

.phone-header a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--primary);
    margin-top: 0;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.hero-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-content li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-content li::before {
    content: '✔';
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Form */
.aca-form {
    background: var(--white);
    padding: 30px;
    border: 1px solid #d6d7d9;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.aca-form h3 {
    margin-top: 0;
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.aca-form p.sub {
    text-align: center;
    color: #565c65;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #565c65;
    border-radius: 0; /* Official government look often uses sharp corners */
    font-size: 1rem;
    box-sizing: border-box;
}

.form-input:focus, .form-select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background: #004a86;
}

.disclaimer {
    font-size: 0.75rem;
    color: #565c65;
    margin-top: 20px;
    line-height: 1.4;
}

/* Footer */
footer {
    background: #1b1b1b;
    color: #aeb0b5;
    padding: 40px 0;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: underline;
    margin: 0 10px;
}

.footer-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #454545;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}
