/* Import Archivo font for better typography */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* Enhanced Header Styling - Based on FE Form Design */
.header {
    background-color: white;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px 0 20px;
    box-sizing: border-box;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer {
    position: relative;
    width: 100%;
    background: rgb(247, 247, 247);
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #ccc;
    padding: 20px 0;
    padding-bottom: 50px;
    box-sizing: border-box;
    margin-top: 0;
}

.footer-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer p {
    margin: 10px auto;
    color: #464646;
    width: 90%;
    max-width: 750px;
}

.footer-links {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links a {
    margin: 0 5px;
}

.copyright {
    font-size: 14px;
}

.disclaimer {
    margin: 15px auto;
    max-width: 90%;
    padding-bottom: 30px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.5;
}

/* Logo Styling */
.website-logo {
    height: 36px;
    width: auto;
}

/* Header CTA Styling - Professional Design */
.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
    margin-right: 20px;
}

.header-text {
    font-size: 14px;
    color: #202124;
    font-weight: 500;
    white-space: nowrap;
}

.header-phone {
    font-size: 18px;
    font-weight: 700;
    color: #436436; /* Default brand color */
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    transition: color 0.2s ease;
}

.header-phone:hover {
    color: #35502b; /* Darker on hover */
}

.header-phone svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.header-subtitle {
    font-size: 12px;
    color: #5f6368;
    white-space: nowrap;
}

/* Responsive Header Styles */
@media (max-width: 768px) {
    .website-logo {
        height: 30px;
    }
    
    .header-cta {
        gap: 2px;
    }
    
    .header-phone {
        font-size: 16px;
    }
    
    .header-text {
        font-size: 13px;
    }
    
    .header-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 430px) {
    .website-logo {
        height: 32px;
    }
    
    .header-cta {
        flex-direction: column;
        gap: 2px;
        align-items: flex-end;
        justify-content: center;
    }
    
    .header-text {
        font-size: 11px;
        text-align: right;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .header-subtitle {
        font-size: 11px;
        line-height: 1.1;
    }
    
    .header-phone {
        font-size: 14px;
        line-height: 1;
    }
}

.header-qualify-number:link, 
.header-qualify-number:visited,
.header-qualify-number:hover,
.header-qualify-number:active {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header-qualify-call {
        padding: 10px 20px;
    }
    
    .header-qualify-number {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .header-qualify-number i {
        font-size: 22px;
        margin-right: 10px;
    }
    
    .header-qualify-check {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-qualify-call {
        padding: 8px 15px;
    }
    
    .header-qualify-number {
        font-size: 16px;
    }
    
    .header-qualify-number i {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .header-qualify-check {
        font-size: 10px;
    }
}

.breaking-news {
    padding-top: 15px;
}

.main-content {
    max-width: 900px;
    width: 90%;
    min-height: calc(100vh - 200px);
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.main-content h1 {
    color: #323232;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.3;
}

.main-content h2 {
    color: #323232;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
}

.main-content p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.main-content .last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.main-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.main-content li {
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.main-content h3 {
    color: #323232;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .main-content h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .main-content ul {
        padding-left: 25px;
    }

    .main-content li {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 15px;
        min-height: calc(100vh - 160px);
    }

    .main-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .main-content h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .main-content p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .footer {
        width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .footer p {
        width: 90%;
        margin: 10px auto;
    }
}