/* 
 * Get Health Coverage Now - Main Styles
 * Based on archived website: gethealthcoveragenow.com
 */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

.required {
    color: #ff0000;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    padding: 0.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

header a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo {
    color: #0052D4;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-nav li {
    margin-left: 1rem;
    list-style: none;
    white-space: nowrap;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
    font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0052D4;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0052D4;
}

.main-nav a.nav-button {
    background-color: #0052D4;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
    font-size: 0.9rem;
}

.main-nav a.nav-button:hover {
    background-color: #003da0;
    color: white;
}

.main-nav a.nav-button.active::after {
    display: none;
}

/* ===== FORM SECTION ===== */
.form-section {
    background-color: #005BFF;
    padding: 3rem 0;
}

.form-container {
    background-color: #005BFF;
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* JotForm Customization */
.form-container iframe {
    width: 100%;
    min-height: 300px;
    border: none;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: #005BFF;
    color: white;
    padding: 3rem 0;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.health-coverage-image {
    flex: 0 0 359px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-coverage-image img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 359px;
}

.benefits-list {
    flex: 1;
}

.benefits-list ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00C853;
    font-size: 1.5rem;
}

/* ===== INSTRUCTIONS SECTION ===== */
.instructions-section {
    background-color: white;
    padding: 3rem 0;
}

.instructions-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.instructions-section ul {
    max-width: 600px;
    margin: 0 auto;
}

.instructions-section ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.instructions-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0052D4;
    font-size: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #00C853;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.contact-section p {
    margin-bottom: 0.5rem;
}

.email {
    font-size: 1.2rem;
}

.call-to-action {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 1rem 0;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
    background-color: #0052D4;
    color: white;
    padding: 2rem 0;
}

.social-links {
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #4267B2;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: #0052D4;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.page-header h2 {
    margin-bottom: 0;
    font-size: 2.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 3rem 0;
}

.about-intro, .about-mission, .about-values, .about-team, .about-why-choose {
    margin-bottom: 2.5rem;
}

.about-content h3 {
    color: #0052D4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ===== SERVICES PAGE ===== */
.services-content {
    padding: 3rem 0;
}

.service-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    color: #0052D4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-features {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    padding: 3rem 0;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: #0052D4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info-item i {
    color: #0052D4;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h3 {
    color: #0052D4;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-row textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: #0052D4;
    box-shadow: 0 0 0 2px rgba(0, 82, 212, 0.2);
}

.form-submit {
    text-align: center;
}

.form-submit button {
    background-color: #0052D4;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit button:hover {
    background-color: #003da0;
}

/* ===== FAQ PAGE ===== */
.faq-content {
    padding: 3rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: bold;
    color: #0052D4;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.faq-answer {
    line-height: 1.8;
}

/* ===== LEGAL PAGES (Disclaimer, Terms, Privacy) ===== */
.legal-content {
    padding: 3rem 0;
}

.legal-content h3 {
    color: #0052D4;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h4 {
    color: #333;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content a {
    color: #0052D4;
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

.legal-content .last-updated {
    font-style: italic;
    margin-top: 2rem;
    color: #666;
}

/* ===== SECURE FILE UPLOAD PAGE ===== */
.upload-content {
    padding: 3rem 0;
}

.upload-instructions {
    margin-bottom: 2rem;
}

.upload-instructions h3 {
    color: #0052D4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.upload-instructions p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.upload-instructions ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.upload-instructions ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.file-upload-container {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.file-upload-container h3 {
    color: #0052D4;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.file-upload-area {
    border: 2px dashed #ccc;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload-area:hover {
    border-color: #0052D4;
}

.file-upload-area i {
    font-size: 3rem;
    color: #0052D4;
    margin-bottom: 1rem;
}

.file-upload-area p {
    margin-bottom: 0.5rem;
}

.file-upload-area .small {
    font-size: 0.9rem;
    color: #666;
}

.file-upload-button {
    background-color: #0052D4;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.file-upload-button:hover {
    background-color: #003da0;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    margin: 0 1rem 0.5rem;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}