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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #193e54 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Info Section Styles */
.info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-bottom: 5px solid #667eea;
}

.info-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.goals-section {
    margin: 30px 0;
}

.goals-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

.goal-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    border-right: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-3px);
}

.goal-item h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.goal-item p {
    color: #34495e;
    line-height: 1.7;
    font-size: 1rem;
}

.call-to-action {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-note {
    text-align: center;
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Terms Container */
.terms-container {
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #667eea;
}

.terms-checkbox label {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    cursor: pointer;
}

.terms-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #764ba2;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.terms-content h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
}

.terms-content p {
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.terms-intro {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.terms-intro p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.highlight-box {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #fdcb6e;
}

.warning-box {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #e74c3c;
}

.info-box {
    background: #d1ecf1;
    border: 2px solid #b8daff;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #3498db;
}

.devices-box {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #27ae60;
}

.privacy-box {
    background: #e2e3e5;
    border: 2px solid #d6d8db;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #6c757d;
}

.contact-box {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #667eea;
    text-align: center;
}

.damages-box {
    background: #fff2cc;
    border: 2px solid #ffe69c;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-right: 5px solid #f39c12;
    text-align: center;
}

.highlight-box p,
.warning-box p,
.info-box p,
.devices-box p,
.privacy-box p,
.contact-box p,
.damages-box p {
    margin: 0;
    font-weight: 600;
}

.terms-footer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    border: 2px solid #dee2e6;
}

.modal-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-accept,
.btn-close {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.btn-close {
    background: #95a5a6;
    color: white;
}

.btn-close:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-50px) translateY(-50px);
    }
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.form-container {
    padding: 40px;
}

.form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-right: 5px solid #667eea;
    transition: all 0.3s ease;
}

.form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-section.locked {
    opacity: 0.6;
    pointer-events: none;
}

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

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

.form-group input:focus+label,
.form-group select:focus+label {
    color: #667eea;
}

.auto-fill-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
}

.auto-fill-section .section-title {
    color: white;
}

.auto-fill-section .form-group label {
    color: white;
}

.auto-fill-section .form-group input {
    background: rgba(255, 255, 255, 0.9);
}

.children-container {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

.child-info {
    background: #f1f3f4;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-right: 3px solid #667eea;
}

.child-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.conditional-field {
    margin-top: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-right: 3px solid #667eea;
}

.submit-container {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.required {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 20px;
    }

    .form-section {
        padding: 20px;
    }
}

.loading {
    display: none;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: 500;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.lottery-error {
    color: white;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 8px;
    display: none;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.success-message {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.field-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

/* Select2 Custom Styling */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    background: white !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    transform: translateY(-2px) !important;
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #2c3e50 !important;
    line-height: 46px !important;
    padding: 0 !important;
    font-size: 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #adb5bd !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #667eea transparent transparent transparent !important;
    border-width: 8px 6px 0 6px !important;
    margin-top: -3px !important;
}

.select2-dropdown {
    border: 2px solid #667eea !important;
    border-radius: 10px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    margin-top: 5px !important;
}

.select2-container--default .select2-results__option {
    padding: 12px 15px !important;
    font-size: 16px !important;
    color: #2c3e50 !important;
    transition: all 0.2s ease !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #f8f9fa !important;
    color: #667eea !important;
    font-weight: 600 !important;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 10px !important;
    font-size: 14px !important;
    margin: 10px !important;
    width: calc(100% - 20px) !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #667eea !important;
    outline: none !important;
}

/* Select2 Error State */
.form-group.has-error .select2-container--default .select2-selection--single {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

/* Select2 בשדות מותנים */
.conditional-field .select2-container--default .select2-selection--single {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Select2 RTL Support */
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 15px !important;
    right: auto !important;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 35px !important;
    padding-left: 0 !important;
    text-align: right !important;
}

/*  */
/* SEO Header Improvements */
.header-seo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.header-seo p {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* פונטים לעברית */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Breadcrumbs for better navigation */
.breadcrumbs {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    margin-bottom: 20px;
    border-radius: 8px;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

/* FAQ Section */
.faq-section {
    background: white;
    margin: 30px 0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-answer {
    color: #34495e;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header-seo {
        grid-template-columns: 1fr;
    }
}

.call-to-action-final {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.main-logo {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .main-logo {
        max-width: 150px;
    }
}

/* FAQ Extended Section */
.faq-extended-section {
    background: white;
    margin: 40px 0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-extended-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-extended-section h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.faq-extended-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-extended-item:last-child {
    border-bottom: none;
}

.faq-extended-question {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-extended-answer {
    color: #34495e;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .faq-extended-section {
        padding: 25px;
        margin: 20px 0;
    }

    .faq-extended-section h2 {
        font-size: 1.5rem;
    }

    .faq-extended-section h3 {
        font-size: 1.2rem;
    }

    .faq-extended-question {
        font-size: 1rem;
    }

    .faq-extended-answer {
        font-size: 0.95rem;
    }
}

/* FAQ Button */
.faq-button-container {
    text-align: center;
    margin: 30px 0;
}

.faq-open-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 100px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.faq-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* FAQ Modal */
.faq-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
}

.faq-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.3s ease-out;
}

.faq-modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.faq-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.faq-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
    max-height: calc(90vh - 200px);
}

.faq-modal-body h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.faq-modal-body h3:first-child {
    margin-top: 0;
}

.faq-extended-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-extended-item:last-child {
    border-bottom: none;
}

.faq-extended-question {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-extended-answer {
    color: #34495e;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .faq-modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .faq-modal-header {
        padding: 20px;
    }

    .faq-modal-header h2 {
        font-size: 1.3rem;
    }

    .faq-modal-body {
        padding: 20px;
        max-height: calc(95vh - 150px);
    }

    .faq-modal-body h3 {
        font-size: 1.2rem;
    }

    .faq-extended-question {
        font-size: 1rem;
    }

    .faq-extended-answer {
        font-size: 0.95rem;
    }

    .faq-open-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}