/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1f2937;
}

h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 36px;
    line-height: 44px;
}

h3 {
    font-size: 24px;
    line-height: 32px;
}

/* Buttons */
.btn-primary {
    background: #2563EB;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 44px;
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: #2563EB;
    border: 2px solid #2563EB;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 44px;
}

.btn-secondary:hover {
    background: #F1F5F9;
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 18px;
    min-height: 56px;
}

.btn-primary.full-width {
    width: 100%;
    display: block;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2563EB;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #6B7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2563EB;
}

.nav-cta {
    background: transparent;
    color: #2563EB;
    border: 1px solid #2563EB;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #2563EB;
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #6B7280;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    margin-bottom: 24px;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 28px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cnbv-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cnbv-badge img {
    width: 48px;
    height: 48px;
}

.cnbv-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.stats {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
}

.security-badges {
    display: flex;
    gap: 12px;
}

.security-badges img {
    height: 32px;
}

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

.phone-mockup img {
    max-width: 100%;
    height: auto;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 48px;
    font-size: 18px;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #F9FAFB;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    font-weight: 600;
    color: #374151;
}

.amount-input {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 16px;
    font-weight: 600;
    color: #6B7280;
    z-index: 1;
}

.amount-input input {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 12px 16px 12px 40px;
    font-size: 16px;
    width: 100%;
    font-weight: 600;
}

.amount-input input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.amount-slider {
    margin-top: 8px;
}

.amount-slider input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E5E7EB;
    outline: none;
    -webkit-appearance: none;
}

.amount-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2563EB;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: #6B7280;
}

.term-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.term-btn {
    background: #ffffff;
    border: 2px solid #E5E7EB;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.term-btn:hover,
.term-btn.active {
    border-color: #2563EB;
    background: #EFF6FF;
    color: #2563EB;
}

select {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    background: #ffffff;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.result-card h3 {
    margin-bottom: 24px;
    color: #1f2937;
}

.payment-info {
    margin-bottom: 20px;
}

.payment-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.payment-label {
    font-weight: 500;
    color: #6B7280;
}

.payment-value {
    font-size: 32px;
    font-weight: 700;
    color: #10B981;
}

.rate-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #6B7280;
}

.total-payment {
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
}

.comparison-table {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.comparison-table h4 {
    margin-bottom: 16px;
    color: #1f2937;
    font-size: 18px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
    font-weight: 600;
    color: #374151;
    background: #F9FAFB;
}

.comparison-table .highlight {
    color: #10B981;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.step {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.step p {
    color: #6B7280;
    margin-bottom: 16px;
}

.step-time {
    background: #EFF6FF;
    color: #2563EB;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

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

.small-text {
    margin-top: 12px;
    font-size: 14px;
    color: #6B7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial {
    background: #F9FAFB;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #F59E0B;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-author strong {
    color: #1f2937;
}

.testimonial-author span {
    color: #6B7280;
    font-size: 14px;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid #E5E7EB;
}

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

.stat-item .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
    display: block;
}

.stat-item .stat-label {
    color: #6B7280;
    font-size: 14px;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.requirement {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.requirement h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.requirement p {
    color: #6B7280;
}

.documents-needed {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
    text-align: center;
}

.documents-needed h3 {
    margin-bottom: 32px;
    color: #1f2937;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.document {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.doc-icon {
    font-size: 24px;
}

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

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #2563EB;
}

.faq-icon {
    font-size: 24px;
    color: #2563EB;
    transition: transform 0.2s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 24px 0;
    color: #6B7280;
    line-height: 1.6;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: 20px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6B7280;
    z-index: 1;
}

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

/* Application Form */
.application-form {
    padding: 40px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E5E7EB;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.progress-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.progress-step.active span {
    background: #2563EB;
    color: #ffffff;
}

.progress-step small {
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    white-space: nowrap;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 8px;
    color: #1f2937;
}

.form-step p {
    color: #6B7280;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input {
    width: auto;
}

.form-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

/* Document Upload */
.document-upload {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.upload-item label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #374151;
}

.upload-zone {
    border: 2px dashed #D1D5DB;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-zone:hover {
    border-color: #2563EB;
    background: #F8FAFC;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #6B7280;
}

.upload-zone span {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.upload-zone small {
    color: #6B7280;
}

/* Terms acceptance */
.terms-acceptance {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: #2563EB;
    border-color: #2563EB;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

/* Success content */
.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
    color: #10B981;
}

.success-content h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.success-content p {
    color: #6B7280;
    margin-bottom: 32px;
}

.next-steps {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.next-steps h4 {
    margin-bottom: 16px;
    color: #1f2937;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #6B7280;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.reference-number {
    background: #EFF6FF;
    color: #2563EB;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #D1D5DB;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 16px;
    color: #9CA3AF;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.contact-info p {
    margin-bottom: 8px;
}

.footer-legal {
    border-top: 1px solid #374151;
    padding-top: 32px;
}

.regulatory-info {
    background: #111827;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.regulatory-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.disclaimers {
    margin-bottom: 24px;
}

.disclaimers p {
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 36px;
        line-height: 44px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .trust-indicators {
        align-items: center;
    }

    .stats {
        justify-content: center;
    }

    .calculator {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }

    .term-buttons {
        flex-direction: column;
    }

    .term-btn {
        min-width: unset;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-stats {
        flex-direction: column;
        gap: 24px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .documents-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-buttons {
        flex-direction: column;
    }

    .application-form {
        padding: 24px;
    }

    .modal-content {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .progress-step small {
        display: none;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .calculator {
        padding: 24px 16px;
    }

    .step {
        padding: 24px;
    }

    .testimonial {
        padding: 24px;
    }

    .requirement {
        padding: 24px;
    }

    .documents-needed {
        padding: 32px 24px;
    }

    .btn-primary.large {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* Print styles */
@media print {
    .header,
    .modal-overlay,
    .hero-ctas,
    .process-cta,
    .requirements-cta {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .btn-secondary {
        border-width: 3px;
    }
}