/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #404040 75%, #525252 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #ffd700, #ffed4e, #fff8dc);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Container */
.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 10px;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 20px;
}

/* Page Styles */
.page {
    display: none;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
    min-height: 100%;
}

.page.active {
    display: block;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px) scale(0.92); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.8; 
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-5px); 
    }
}

/* Page Content Structure */
.page-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: auto;
    max-height: none;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    backdrop-filter: blur(20px);
    margin-bottom: 25px;
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
}

.question-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 25px;
    font-weight: 500;
    text-align: center;
}

/* Hero Section (Page 1) */
.hero-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: auto;
    max-height: none;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    backdrop-filter: blur(20px);
    position: relative;
    margin: 15px 0;
    animation: float 6s ease-in-out infinite;
}

.company-logo-section {
    margin-bottom: 30px;
}

.main-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 35px rgba(212, 175, 55, 0.4));
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4af37, #ffd700, #ffed4e);
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 35px;
    border: none;
    align-self: center;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37, #ffd700, #ffed4e);
    color: #000000;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #000000;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 0 0 2px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #b8860b, #d4af37, #ffd700);
}

.trust-badge i {
    font-size: 10px;
    color: #000000;
}

/* Agent Information */
.agent-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(37, 99, 235, 0.15);
}

.agent-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.agent-photo {
    flex-shrink: 0;
}

.agent-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.agent-details {
    flex: 1;
}

.agent-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.agent-details p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: 500;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-item i {
    color: #2563eb;
    font-size: 0.8rem;
    width: 12px;
}

/* Insurance Partners */
.insurance-partners {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partners-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -0.025em;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.partners-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background: white;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.partners-image:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.subtitle {
    font-size: 1.4rem;
    color: #4b5563;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.benefits {
    margin: 35px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #374151;
    padding: 12px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.benefit-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    padding: 15px 18px;
    margin: 0 -18px 18px -18px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.benefit-item i {
    color: #d4af37;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.benefit-item span {
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
}

.disclaimer {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #d4af37, #ffd700, #ffed4e);
    color: #000000;
    border: none;
    padding: 20px 36px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: center;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #b8860b, #d4af37, #ffd700);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled::before {
    display: none;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    background: #2563eb;
    color: white;
}

/* Options Grid (Page 2) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.option-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    min-height: 140px;
    justify-content: center;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 215, 0, 0.08));
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px) scale(1.01);
}

.option-card.selected::before {
    transform: scaleX(1);
}

.option-icon {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.option-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Simple Options (Pages 3-6) */
.options-simple {
    margin-bottom: 25px;
}

.option-simple {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.option-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option-simple:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

.option-simple:hover::before {
    transform: scaleX(1);
}

.option-simple.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 215, 0, 0.08));
    box-shadow: 
        0 12px 30px rgba(212, 175, 55, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px) scale(1.005);
}

.option-simple.selected::before {
    transform: scaleX(1);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.option-content i {
    font-size: 1.6rem;
    color: #d4af37;
    min-width: 35px;
    transition: all 0.3s ease;
}

.option-simple:hover .option-content i {
    transform: scale(1.1);
}

.option-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    letter-spacing: -0.025em;
}

.option-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Contact Form (Page 7) */
.contact-form {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px;
    padding: 35px 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: -0.025em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 4px 15px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    margin-top: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    transform: scale(1.2);
}

.checkbox-text {
    color: #6b7280;
    font-weight: 400;
}

.checkbox-text strong {
    color: #2563eb;
    font-weight: 600;
}

.privacy-note {
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 400;
}

/* Thank You Page (Page 8) */
.thank-you-content {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thank-you-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

.next-steps {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.next-steps h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    letter-spacing: -0.025em;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    text-align: left;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.step-content p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.bonus-offer {
    background: white;
    border: 2px solid #2563eb;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.bonus-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.bonus-offer h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.bonus-offer p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 400;
}

.contact-info {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 400;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 5px;
        padding-top: 50px;
        padding-bottom: 10px;
    }
    
    .page-content,
    .hero-section {
        padding: 15px 12px;
        margin: 5px 0;
        min-height: auto;
        max-height: none;
    }
    
    .page-header h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .subtitle,
    .question-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .option-card {
        padding: 18px 15px;
        min-height: 100px;
        gap: 8px;
    }
    
    .option-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .option-card h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .option-card p {
        font-size: 0.9rem;
    }
    
    .options-simple {
        margin-bottom: 15px;
    }
    
    .option-simple {
        padding: 15px;
        margin-bottom: 10px;
        min-height: 70px;
    }
    
    .option-content {
        gap: 12px;
    }
    
    .option-content i {
        font-size: 1.4rem;
        min-width: 30px;
    }
    
    .option-content h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .option-content p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .next-steps,
    .bonus-offer {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .step-item {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 14px 20px;
        font-size: 0.95rem;
        margin-top: 12px;
    }
    
    .benefits {
        padding: 15px;
        margin: 15px 0;
    }
    
    .benefit-item {
        gap: 8px;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .benefit-item i {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    /* Trust elements mobile */
    .trust-badges {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .trust-badge {
        padding: 6px 12px;
        font-size: 10px;
        color: #000000;
        border: 2px solid #000000;
    }
    
    .agent-card {
        padding: 12px;
        gap: 10px;
    }
    
    .agent-image {
        width: 45px;
        height: 45px;
    }
    
    .agent-details h4 {
        font-size: 0.95rem;
    }
    
    .agent-details p {
        font-size: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
    
    .insurance-partners {
        padding: 15px;
        margin-top: 15px;
    }
    
    .main-logo {
        max-width: 180px;
    }
    
    .partners-image {
        padding: 10px;
        max-width: 100%;
    }
    
    .disclaimer {
        font-size: 0.85rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px;
        padding-top: 50px;
        padding-bottom: 10px;
    }
    
    .page-content,
    .hero-section {
        padding: 15px 12px;
        margin: 5px 0;
        min-height: auto;
        max-height: none;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .option-card {
        padding: 15px 12px;
        min-height: 90px;
    }
    
    .option-simple {
        padding: 12px;
        min-height: 60px;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .next-steps,
    .bonus-offer {
        padding: 15px;
    }
    
    .main-logo {
        max-width: 140px;
    }
    
    .partners-image {
        padding: 8px;
        max-width: 100%;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        margin-top: 12px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Privacy Policy Modal */
.privacy-link {
    color: #d4af37;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #b8860b;
}

.privacy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.privacy-modal-content {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideInUp 0.4s ease-out;
}

.privacy-header {
    background: linear-gradient(135deg, #d4af37, #ffd700, #ffed4e);
    color: #000000;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000000;
}

.privacy-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.close-privacy {
    background: none;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-privacy:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.privacy-content {
    padding: 30px;
    line-height: 1.6;
}

.privacy-content h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 8px;
}

.privacy-content p {
    color: #374151;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-content li {
    color: #374151;
    margin-bottom: 8px;
    font-size: 1rem;
}

.privacy-content strong {
    color: #1f2937;
    font-weight: 700;
}

.privacy-footer {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0 0 20px 20px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(50px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Mobile Privacy Modal */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .privacy-header {
        padding: 20px;
    }
    
    .privacy-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .privacy-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
    }
    
    .privacy-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .privacy-header {
        padding: 15px;
    }
    
    .privacy-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content {
        padding: 15px;
    }
    
    .privacy-content h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px 0;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.9rem;
    }
    
    .privacy-footer {
        padding: 15px;
    }
} 