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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background-color: #ffffff;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Main Layout */
.main {
    min-height: 100vh;
}

.section {
    padding: 80px 0;
}

/* Section Titles */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3748;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo-img {
    width: 140px;
    height: auto;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.3;
}

.feature-text p {
    opacity: 0.95;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

.hero-cta {
    text-align: center;
}

.cta-subtitle {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

.skip-line-option {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.skip-line-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.calendly-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.calendly-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Educational Section */
.educational-section {
    background: #f8fafc;
    padding: 100px 0;
}

.educational-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.educational-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.educational-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.educational-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.educational-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
    text-align: center;
    line-height: 1.3;
}

.educational-card p {
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.7;
    font-size: 1.15rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.75rem 0;
    color: #1a202c;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Educational Extended Section */
.educational-extended {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

.extended-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    letter-spacing: -0.025em;
}

.extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.extended-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.extended-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.extended-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.extended-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.extended-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.extended-card p {
    color: #2d3748;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Assessment Section */
.assessment-section {
    background: white;
    padding: 100px 0;
}

.assessment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.assessment-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.assessment-text > p {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.assessment-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #edf2f7;
    transform: translateX(8px);
}

.benefit-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.benefit-content p {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.6;
}

.assessment-cta {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.assessment-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 100px 0;
}

.faq-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
    letter-spacing: -0.025em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
    line-height: 1.4;
}

.faq-answer {
    color: #2d3748;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.contact-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a202c;
    letter-spacing: -0.025em;
}

.contact-content > p {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-option {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-details p {
    color: #2d3748;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #4a5568;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

.btn-secondary:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.4);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    font-weight: 600;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.4s ease-out;
    border: 1px solid #e2e8f0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #718096;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
}

.modal-body {
    padding: 2.5rem;
}

/* Questionnaire Modal */
.questionnaire-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.questionnaire-modal-header {
    padding: 2rem 2.5rem;
}

.questionnaire-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s ease;
    border-radius: 6px;
}

.progress-text {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 600;
    min-width: 60px;
}

.questionnaire-modal-body {
    padding: 2.5rem;
}

.question-container {
    min-height: 350px;
}

.question {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.question-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
    line-height: 1.3;
}

.question-subtitle {
    color: #2d3748;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.option:hover {
    border-color: #667eea;
    background: #f8fafc;
    transform: translateX(8px);
}

.option.selected {
    border-color: #667eea;
    background: #edf2ff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.option input[type="radio"] {
    margin-right: 1.5rem;
    transform: scale(1.3);
    accent-color: #667eea;
}

.option-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.option-content p {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 1.05rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.restart-btn {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    color: #718096;
    border: 1px solid #e2e8f0;
}

/* Results Section */
.results-section {
    background: white;
    padding: 100px 0;
}

.results-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.results-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a202c;
    letter-spacing: -0.025em;
}

.results-summary {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.recommendation-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.recommendation-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.recommendation-description {
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.why-section {
    margin-top: 2rem;
}

.why-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 0.75rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.results-note {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a202c;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    color: #1a202c;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.form-disclaimer {
    margin-top: 2rem;
    text-align: center;
}

.form-disclaimer p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-main p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .assessment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .educational-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .question-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 2rem;
    }
    
    .questionnaire-modal-header {
        padding: 1.5rem 2rem;
    }
    
    .questionnaire-modal-body {
        padding: 2rem;
    }
    
    .educational-card,
    .contact-option {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    body {
        font-size: 16px;
    }
} 

/* Educational Modal */
.educational-modal .modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.educational-modal-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.educational-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 2.5rem;
}

.educational-modal .modal-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.educational-modal .modal-close {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.educational-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.educational-modal .modal-body {
    padding: 2.5rem;
    color: #1a202c;
    line-height: 1.7;
}

.educational-content h4 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.educational-content h4:first-child {
    margin-top: 0;
}

.educational-content p {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
}

.educational-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.educational-content li {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comparison-table {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    background: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-header {
    background: #f8fafc;
    padding: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-cell {
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
    line-height: 1.6;
    font-size: 1.05rem;
}

.comparison-cell:last-child {
    border-bottom: none;
}

.underwriting-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.underwriting-type {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.underwriting-type h5 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.underwriting-type p {
    color: #2d3748;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.health-conditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.condition-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.5;
}

.coverage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.coverage-option {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.coverage-option h5 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.coverage-option p {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.coverage-option ul {
    margin: 0;
    padding-left: 1rem;
}

.coverage-option li {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: #2d3748;
}

.savings-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.tip-item {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.5;
}

.educational-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.educational-cta-box p {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.educational-cta-box p:last-child {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.educational-modal .modal-footer {
    padding: 1.5rem 2.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: center;
} 

 