* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .container {
        padding: 15px 20px;
    }
}

/* Header Badge */
.header-badge {
    display: inline-block;
    background-color: #e8f4f8;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    color: #0066cc;
    margin-bottom: 20px;
}

.header-badge .advertorial {
    font-weight: 600;
}

.header-badge .separator {
    margin: 0 8px;
    color: #999;
}

.header-badge .category {
    font-weight: 500;
}

/* Main Headline */
h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
}

/* Date */
.date {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Hero Image */
.hero-image-container {
    width: 100%;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.content p {
    margin-bottom: 20px;
}

.content .intro {
    font-size: 18px;
    margin-top: 20px;
}

/* Qualification Box */
.qualification-box {
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.qualification-box .box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.qualification-list {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.qualification-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
}

.qualification-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 24px;
    line-height: 1;
}

.qualification-box .box-footer {
    margin-top: 15px;
    margin-bottom: 0;
}

/* Headings */
h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
}

/* Testimonial */
.testimonial {
    background-color: #f0f8ff;
    border-left: 4px solid #0066cc;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    border-radius: 4px;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #555;
}

/* Note Box */
.note-box {
    background-color: #fffbea;
    border: 2px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
}

.note-box p {
    margin-bottom: 0;
    font-size: 17px;
}

/* Comparison Section */
.comparison-section {
    margin: 40px 0;
    padding: 20px 0;
}

.comparison-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: center;
}

.comparison-item {
    text-align: center;
}

.comparison-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .comparison-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Steps */
.steps {
    margin: 25px 0;
}

.steps p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Select State */
.select-state {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px 0;
}

/* State Selector */
.state-selector {
    text-align: center;
    margin: 30px 0;
}

.state-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    font-size: 18px;
    border: 2px solid #0066cc;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-dropdown:hover {
    border-color: #0052a3;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.state-dropdown:focus {
    outline: none;
    border-color: #0052a3;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* CTA Container */
.cta-container {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
        width: 100%;
    }
}

/* Modal */
.zip-code-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 26px;
}

#zip-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

#zip-input:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

/* Footer Links */
.footer-links {
    text-align: center;
    margin: 50px 0 20px 0;
    font-size: 14px;
}

.footer-links a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #999;
}

/* Copyright */
.copyright {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 20px 0;
}

/* Disclaimer */
.disclaimer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.disclaimer p {
    margin-bottom: 15px;
}

.disclaimer .small-text {
    font-size: 11px;
    line-height: 1.5;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}


