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

:root {
    --primary: #4FD1C5;
    --primary-dark: #38B2AC;
    --primary-light: #B2F5EA;
    --text-dark: #2D3748;
    --text-gray: #718096;
    --text-light: #A0AEC0;
    --bg-light: #F7FAFC;
    --bg-white: #ffffff;
    --border: #E2E8F0;
    --border-light: #EDF2F7;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

/* Success Banner */
.success-banner {
    background: #48BB78;
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

.success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.success-content svg {
    flex-shrink: 0;
}

.success-content span {
    font-weight: 500;
}

.success-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
    line-height: 1;
}

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

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--text-dark);
}

.btn-apply {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E6FFFA 0%, #C4F1F9 50%, #B2F5EA 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 24px 80px;
}

.hero-content-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-title-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 15px;
}

.feature-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-security {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-security svg {
    flex-shrink: 0;
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 0 40px;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(79, 209, 197, 0.3);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 209, 197, 0.3);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(79, 209, 197, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 209, 197, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (prefers-reduced-motion: reduce) {
    .badge-dot {
        animation: none;
    }
    .scroll-indicator {
        animation: none;
    }
    .hero .btn-primary:hover,
    .btn-primary:hover {
        transform: none;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 64px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.card-icon-chat { background: #E6FFFA; }
.card-icon-email { background: #FEF3C7; color: #F59E0B; }
.card-icon-doc { background: #EDE9FE; color: #8B5CF6; }
.card-icon-star { background: #FCE7F3; color: #EC4899; }

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Requirements Section */
.requirements {
    padding: 80px 0;
    background: var(--bg-light);
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-dark);
}

.check-icon {
    flex-shrink: 0;
}

.ready-box {
    background: var(--primary);
    padding: 40px;
    border-radius: 16px;
    color: white;
    position: sticky;
    top: 100px;
}

.ready-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ready-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 32px;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid white;
}

.team-count {
    font-size: 14px;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-gray);
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ================================================
   APPLICATION FORM - REDESIGNED
   ================================================ */

.apply-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

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

.apply-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.secure-icon {
    color: var(--primary);
}

.secure-text {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.apply-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.apply-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 48px;
}

/* Form Card */
.application-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: 32px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-percent {
    font-size: 14px;
    color: var(--text-gray);
}

.progress-bar-track {
    height: 6px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 20%;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.step-indicator {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.step-indicator .step-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.step-indicator.active {
    background: var(--primary);
    border-color: var(--primary);
}

.step-indicator.active .step-number {
    color: white;
}

.step-indicator.completed {
    background: #E6FFFA;
    border-color: var(--primary);
}

.step-indicator.completed .step-number {
    color: var(--primary);
}

/* Form Steps */
.multi-step-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.step-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-subheading {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 32px;
}

/* Form Fields */
.form-field {
    margin-bottom: 24px;
}

.field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.optional-text {
    font-weight: 400;
    color: var(--text-light);
}

.field-input,
.field-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.2s;
    font-family: inherit;
    background: white;
}

.field-input:hover {
    border-color: var(--text-light);
}

.field-input:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

.field-input::placeholder {
    color: var(--text-light);
}

select.field-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A0AEC0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.field-error {
    display: none;
    color: #E53E3E;
    font-size: 13px;
    margin-top: 6px;
}

.char-count {
    text-align: right;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

/* Address Section */
.address-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

/* Checkbox List */
.checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-item:hover {
    border-color: var(--primary);
    background: #F7FFFD;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-dark);
}

.checkbox-item-single {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-item-single input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-item-single .checkbox-label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Radio List */
.radio-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-item:hover {
    border-color: var(--primary);
    background: #F7FFFD;
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-item input[type="radio"]:checked + .radio-label {
    color: var(--text-dark);
    font-weight: 600;
}

.radio-item:has(input:checked) {
    border-color: var(--primary);
    background: #E6FFFA;
}

.radio-label {
    font-size: 15px;
    color: var(--text-gray);
}

/* File Upload */
.upload-section {
    margin-top: 24px;
    animation: fadeIn 0.3s ease;
}

.file-upload-area {
    position: relative;
}

.file-input-hidden {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-light);
}

.file-upload-label:hover {
    border-color: var(--primary);
    background: #F7FFFD;
}

.file-upload-label svg {
    color: var(--text-light);
    margin-bottom: 12px;
}

.upload-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 13px;
    color: var(--text-light);
}

.file-preview {
    margin-top: 12px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.file-name {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    font-size: 13px;
    color: var(--text-light);
}

.file-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #FED7D7;
    color: #E53E3E;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.file-remove:hover {
    background: #FC8181;
    color: white;
}

/* Security Notice */
.security-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: #E6FFFA;
    border-radius: 8px;
    margin-bottom: 24px;
    gap: 4px;
}

.security-notice svg {
    color: var(--primary);
    margin-bottom: 4px;
}

.security-notice span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.security-subtext {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Review Sections */
.review-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.review-section {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

.review-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.section-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.section-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.edit-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}

.edit-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.edit-btn svg {
    width: 14px;
    height: 14px;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.review-item strong {
    color: var(--text-gray);
    font-weight: 500;
    min-width: 120px;
}

/* Final Consent */
.final-consent {
    background: #FFFAF0;
    border: 1px solid #FBD38D;
    border-radius: 8px;
    padding: 16px;
}

.final-consent .link {
    color: var(--primary);
    text-decoration: underline;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-continue,
.btn-submit {
    flex: 1;
    padding: 12px 32px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(79, 209, 197, 0.3);
}

.btn-continue:hover:not(:disabled),
.btn-submit:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 209, 197, 0.3);
}

.btn-continue:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

.btn-submit {
    background: #48BB78;
}

.btn-submit:hover {
    background: #38A169;
}

/* Footer */
/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #1a1f2e 0%, #151923 100%);
    color: #e2e8f0;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.footer-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 4px;
}

.footer-trust {
    font-size: 13px;
    color: #a0aec0;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #4FD1C5;
    padding-left: 4px;
}

.footer-links a:focus {
    outline: 2px solid #4FD1C5;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #4FD1C5;
    stroke: currentColor;
}

.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #4FD1C5;
}

.contact-item a:focus {
    outline: 2px solid #4FD1C5;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0 32px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    text-align: center;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #a0aec0;
}

.footer-tagline {
    font-size: 13px;
    color: #718096;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 48px 20px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Old footer styles removed */

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title { font-size: 42px; }
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ready-box { position: static; }
    .application-form-card {
        padding: 24px;
    }
    .checkbox-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 80px 20px 60px;
    }
    .hero-content-wrapper {
        max-width: 100%;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }
    .hero-security {
        margin-bottom: 20px;
    }
    .section-title {
        font-size: 32px;
    }
    .nav {
        gap: 20px;
        font-size: 14px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .about, .requirements, .faq, .apply-section {
        padding: 60px 0;
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    .step-indicators {
        gap: 12px;
    }
    .step-indicator {
        width: 40px;
        height: 40px;
    }
    .form-navigation {
        flex-direction: column-reverse;
    }
    .btn-back, .btn-continue, .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .nav a:not(.btn-apply) {
        display: none;
    }
    .container, .container-apply {
        padding: 0 16px;
    }
    .application-form-card {
        padding: 20px;
    }
    .apply-title {
        font-size: 28px;
    }
    .step-heading {
        font-size: 20px;
    }
    .step-indicators {
        gap: 8px;
    }
    .step-indicator {
        width: 36px;
        height: 36px;
    }
    .step-indicator .step-number {
        font-size: 14px;
    }
}


/* Page-Specific Styles */
.page-content {
    min-height: calc(100vh - 400px);
    padding: 80px 24px;
    background: var(--bg-light);
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.page-intro {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 48px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.content-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.content-section p {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.content-section a {
    color: var(--primary);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.feature-list,
.requirement-list {
    list-style: none;
    padding: 0;
}

.feature-list li,
.requirement-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.feature-list li:before,
.requirement-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.note {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin: 24px 0;
}

/* FAQ Page */
.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

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

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-answer {
    line-height: 1.8;
    color: var(--text-gray);
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Success Stories Page */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.success-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.success-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.success-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.success-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.success-quote {
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 16px;
}

.success-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.disclaimer-box {
    background: #FFF3CD;
    border: 1px solid #FFE69C;
    border-radius: 8px;
    padding: 24px;
    margin: 48px 0;
}

.disclaimer-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 12px;
}

.disclaimer-box p {
    color: #856404;
    line-height: 1.7;
    margin: 0;
}

/* How It Works Page */
.steps-container {
    margin: 48px 0;
}

.step-item {
    margin-bottom: 48px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-item h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 0;
    border: none;
}

.step-item p {
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.step-details li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.step-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .page-container {
        padding: 40px 24px;
    }

    .page-title {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 24px;
    }

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

    .step-number {
        left: 24px;
    }

    .step-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 60px 16px;
    }

    .page-container {
        padding: 32px 20px;
    }

    .page-title {
        font-size: 28px;
    }
}
