/* Extracted from apply.html inline style block for per-page CSS ownership */
        /* Page-specific CSS */
        .apply-hero {
            background: linear-gradient(135deg, var(--gc-green-primary) 0%, var(--gc-green-dark) 100%);
            padding: 140px 0 60px;
            color: white;
        }

        .apply-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .progress-container {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .step-progress {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 2rem;
        }

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

        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            height: 2px;
            background: var(--gc-green-primary);
            z-index: 1;
            transition: width 0.3s ease;
        }

        .step-item {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            font-weight: 600;
            color: #999;
            transition: all 0.3s ease;
        }

        .step-item.active .step-circle {
            background: var(--gc-green-primary);
            border-color: var(--gc-green-primary);
            color: white;
        }

        .step-item.completed .step-circle {
            background: var(--gc-green-primary);
            border-color: var(--gc-green-primary);
            color: white;
        }

        .step-item.completed .step-circle::after {
            content: '✓';
            position: absolute;
            font-size: 1.2rem;
        }

        .step-label {
            font-size: 0.875rem;
            color: #999;
        }

        .step-item.active .step-label,
        .step-item.completed .step-label {
            color: var(--gc-charcoal);
            font-weight: 600;
        }

        .application-form {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        }

        .apply-form-intro {
            background: #f7fbf8;
            border: 1px solid #d8e7da;
            border-radius: 10px;
            padding: 0.9rem 1rem;
            color: rgba(26, 26, 46, 0.85);
        }

        .form-section {
            background: #fff;
            border: 1px solid #e4eaf0;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
            padding: 1.4rem;
            margin-bottom: 1.5rem;
        }

        .form-section:last-of-type {
            margin-bottom: 0;
        }

        .form-section h2 {
            font-size: clamp(1.45rem, 2vw, 1.85rem);
            margin-bottom: 0.5rem !important;
        }

        .form-section > .text-muted {
            margin-bottom: 1rem !important;
        }

        .section-chip {
            display: inline-flex;
            align-items: center;
            font-size: 0.7rem;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--gc-green-primary);
            background: rgba(27, 94, 32, 0.08);
            border-radius: 999px;
            padding: 0.3rem 0.65rem;
            margin-bottom: 0.75rem;
        }

        .form-step {
            display: none;
        }

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

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

        .form-label {
            font-weight: 600;
            color: var(--gc-charcoal);
            margin-bottom: 0.5rem;
        }

        .form-control,
        .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--gc-green-primary);
            box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.1);
        }

        .sidebar-trust {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .trust-card {
            background: linear-gradient(135deg, var(--gc-off-white) 0%, white 100%);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }

        .trust-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .trust-feature:last-child {
            margin-bottom: 0;
        }

        .trust-feature i {
            color: var(--gc-green-primary);
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .file-upload {
            border: 2px dashed #e0e0e0;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload:hover {
            border-color: var(--gc-green-primary);
            background: rgba(27, 94, 32, 0.05);
        }

        .file-upload i {
            font-size: 3rem;
            color: var(--gc-green-primary);
            margin-bottom: 1rem;
        }

        .statement-heading {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gc-charcoal);
        }

        .statement-upload-card {
            border: 1px dashed #cdd6e0;
            border-radius: 10px;
            padding: 0.9rem;
            background: #fcfdfc;
            height: 100%;
        }

        .statement-label {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: #465366;
            font-weight: 600;
        }

        .statement-file-input {
            padding: 0.55rem 0.75rem;
            font-size: 0.92rem;
            border: 1px solid #d8e1e8;
            border-radius: 8px;
            background: #fff;
        }

        .authorization-disclosure {
            border: 1px solid #d2d8df;
            border-radius: 4px;
            background: #fafbfc;
            padding: 1rem;
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.8;
        }

        .review-section {
            background: var(--gc-off-white);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .review-section h4 {
            color: var(--gc-charcoal);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .review-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding: 0.25rem 0;
        }

        .review-item label {
            color: #666;
            font-weight: 500;
        }

        .review-item span {
            color: var(--gc-charcoal);
            font-weight: 600;
        }

        .success-state {
            display: none;
            text-align: center;
            padding: 4rem 2rem;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--gc-green-light), var(--gc-green-primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            font-size: 3rem;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .autosave-indicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            display: none;
            align-items: center;
            gap: 0.5rem;
        }

        .autosave-indicator.show {
            display: flex;
            animation: slideUp 0.3s ease;
        }

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

        @media (max-width: 991px) {
            .sidebar-trust {
                display: none;
            }

            .application-form {
                padding: 2rem 1.5rem;
            }

            .form-section {
                padding: 1.15rem;
            }

            .step-label {
                display: none;
            }
        }

.apply-main {
  padding-top: 88px;
  background: #fff;
}

@media (min-width: 768px) {
  .apply-main {
    padding-top: 120px;
  }
}

.apply-main .eyebrow-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.apply-main .apply-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.apply-main .lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

.apply-main .progress-container,
.apply-main .application-form {
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.apply-main .form-control,
.apply-main .form-select {
  border-color: #d7dee5;
}

.apply-main .form-control:focus,
.apply-main .form-select:focus {
  border-color: rgba(27, 94, 32, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.12);
}

.apply-main .step-label {
  color: rgba(26, 26, 46, 0.6);
}

.apply-main .step-item.active .step-label,
.apply-main .step-item.completed .step-label {
  color: var(--gc-charcoal);
}

.apply-main .sidebar-trust h3 {
  font-family: "Playfair Display", serif;
  color: var(--gc-charcoal);
}

.apply-main .trust-feature p {
  color: rgba(26, 26, 46, 0.7);
}

.apply-main .single-submit-btn {
  min-width: 240px;
}

@media (max-width: 991.98px) {
  .apply-main .apply-hero {
    padding-top: 112px;
  }
}

@media (max-width: 575.98px) {
  .apply-main .lead {
    font-size: 18px;
    line-height: 29px;
  }

  .apply-main .single-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.91);
        transform-origin: left center;
    }
}
