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

/* ===== LARGE DEVICES (Desktops, less than 1200px) ===== */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}

/* ===== MEDIUM DEVICES (Tablets, less than 992px) ===== */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .benefits-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-list ul li {
        text-align: left;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 0.5rem;
    }
}

/* ===== SMALL DEVICES (Landscape phones, less than 768px) ===== */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    header .container {
        flex-direction: row;
        text-align: left;
        position: relative;
        padding: 0 15px;
    }
    
    .logo {
        margin-bottom: 0;
        font-size: 1.3rem;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.3rem;
        background: transparent;
        border: none;
        color: #0052D4;
        cursor: pointer;
        z-index: 100;
        padding: 0.3rem;
    }
    
    .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    
    .main-nav li {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 0;
        border-top: 1px solid #eee;
    }
    
    .main-nav a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .main-nav a.active::after {
        display: none;
    }
    
    .main-nav a.nav-button {
        margin: 0.75rem 2rem;
        border-radius: 4px;
        padding: 0.5rem 0.75rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .radio-option {
        margin-bottom: 0.5rem;
    }
    
    .call-to-action {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
}

/* ===== EXTRA SMALL DEVICES (Portrait phones, less than 576px) ===== */
@media (max-width: 575.98px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .health-coverage-image {
        flex: 0 0 250px;
        height: auto;
    }
    
    .health-coverage-image img {
        width: 100%;
        height: auto;
    }
    
    .instructions-section h2 {
        font-size: 1.25rem;
    }
    
    .email {
        font-size: 1rem;
    }
    
    .call-to-action {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1.25rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }
}