/* Light Theme Design for Insurance Claims Page - Matching Screenshot */

/* Base styles - white background */
body.insurance-page {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Hero Section - White background with large red text */
.insurance-hero-light {
    background-color: #ffffff;
    padding: 6rem 1rem 4rem;
    text-align: center;
}

.insurance-hero-light h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .insurance-hero-light h1 {
        font-size: 3rem;
    }
}

.insurance-hero-light .hero-description {
    font-size: 1.25rem;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.insurance-hero-light .hero-cta {
    margin-top: 2rem;
}

.insurance-btn-red {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.insurance-btn-red:hover {
    background: #b91c1c;
}

/* Problem Section - White card with light red problem cards */
.insurance-problem-section {
    background-color: #f9fafb;
    padding: 4rem 1rem;
}

.insurance-problem-card-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.insurance-problem-card-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.insurance-problem-card-wrapper p {
    font-size: 1.125rem;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.insurance-problem-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.insurance-problem-card-light {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.insurance-problem-card-light:hover {
    border-color: #fca5a5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.insurance-problem-icon-light {
    background: #dc2626;
    border-radius: 0.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.insurance-problem-card-light h3 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.insurance-problem-card-light p {
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.6;
    margin: 0;
}

/* Solution Section - White background */
.insurance-solution-section-light {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.insurance-solution-grid-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .insurance-solution-grid-light {
        grid-template-columns: 1fr;
    }
}

.insurance-solution-badge-light {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.insurance-solution-section-light h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.insurance-solution-section-light p {
    font-size: 1.125rem;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.insurance-feature-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.insurance-feature-item-light {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.insurance-feature-check-light {
    background: #dc2626;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.insurance-feature-item-light span {
    color: #1a1a1a;
}

.insurance-solution-image-light img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Process Section - Dark gray cards */
.insurance-process-section-light {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.insurance-process-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.insurance-process-card-light {
    background: #262626;
    border-radius: 0.75rem;
    padding: 2rem;
    color: #ffffff;
}

.insurance-process-number-light {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.insurance-process-card-light h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.insurance-process-card-light p {
    font-size: 0.875rem;
    color: #d4d4d4;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section - Dark gray cards */
.insurance-benefits-section-light {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.insurance-benefits-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.insurance-benefit-card-light {
    background: #262626;
    border-radius: 0.75rem;
    padding: 2rem;
    color: #ffffff;
}

.insurance-benefit-icon-light {
    background: #dc2626;
    border-radius: 0.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.insurance-benefit-card-light h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.insurance-benefit-card-light p {
    font-size: 0.875rem;
    color: #d4d4d4;
    line-height: 1.6;
    margin: 0;
}

/* Spec Section - Dark gray cards */
.insurance-spec-section-light {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.insurance-spec-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.insurance-spec-card-light {
    background: #262626;
    border-radius: 0.75rem;
    padding: 2rem;
    color: #ffffff;
}

.insurance-spec-card-light h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #404040;
}

.insurance-spec-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insurance-spec-item-light {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.insurance-spec-check-light {
    background: #dc2626;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.insurance-spec-item-light span {
    color: #d4d4d4;
    font-size: 0.875rem;
}

/* FAQ Section */
.insurance-faq-section-light {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.insurance-faq-list-light {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 896px;
    margin: 0 auto;
}

.insurance-faq-item-light {
    background: #262626;
    border-radius: 0.75rem;
    overflow: hidden;
}

.insurance-faq-button-light {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
}

.insurance-faq-chevron-light {
    width: 1.25rem;
    height: 1.25rem;
    color: #dc2626;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.insurance-faq-item-light.active .insurance-faq-chevron-light {
    transform: rotate(180deg);
}

.insurance-faq-answer-light {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #d4d4d4;
    line-height: 1.6;
    display: none;
}

.insurance-faq-item-light.active .insurance-faq-answer-light {
    display: block;
}

/* Contact Section - Red card + Dark gray form */
.insurance-contact-section-light {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.insurance-contact-grid-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .insurance-contact-grid-light {
        grid-template-columns: 1fr;
    }
}

.insurance-contact-info-red {
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
    border-radius: 1rem;
    padding: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.insurance-contact-info-red h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.insurance-contact-item-light {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insurance-contact-icon-light {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    flex-shrink: 0;
}

.insurance-contact-details-light {
    flex: 1;
}

.insurance-contact-details-light .label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

.insurance-contact-details-light a {
    color: #ffffff;
    text-decoration: none;
}

.insurance-contact-details-light a:hover {
    text-decoration: underline;
}

.insurance-contact-details-light .subtext {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.insurance-contact-form-dark {
    background: #262626;
    border-radius: 0.75rem;
    padding: 2rem;
    color: #ffffff;
}

.insurance-contact-form-dark h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.insurance-form-group-light {
    margin-bottom: 1.5rem;
}

.insurance-form-label-light {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
}

.insurance-form-input-light,
.insurance-form-textarea-light {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.insurance-form-input-light:focus,
.insurance-form-textarea-light:focus {
    outline: none;
    border-color: #dc2626;
}

.insurance-form-textarea-light {
    resize: none;
    min-height: 100px;
}

.insurance-form-submit-light {
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.insurance-form-submit-light:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

/* Section titles */
.insurance-section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.insurance-section-subtitle-light {
    font-size: 1.125rem;
    color: #525252;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .insurance-hero-light h1 {
        font-size: 2.5rem;
    }
    
    .insurance-section-title-light {
        font-size: 2rem;
    }
    
    .insurance-problem-card-wrapper,
    .insurance-solution-grid-light,
    .insurance-process-grid-light,
    .insurance-benefits-grid-light,
    .insurance-spec-grid-light,
    .insurance-contact-grid-light {
        padding: 0 1rem;
    }
}
