/* APPLY PAGE */
/* ========================================
   DIRECT APPLY PAGE STYLES
   Add this to your styles.css file
   ======================================== */

/* APPLY PAGE CONTAINER */
.apply-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* APPLY HERO SECTION: Two Columns */
.apply-hero {
    display: flex;
    gap: 200px;
    padding: 60px 0;
}

/* APPLY LEFT COLUMN */
.apply-left {
    flex: 1;
    max-width: 410px;
}

.apply-pre-heading {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 23px;
    font-weight: 900;
    color: #6ab235;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.apply-heading {
    font-family: 'Vectora Black', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

.apply-body {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0em;
    margin-bottom: 20px;
}

/* Direct Apply - Features List */
.apply-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.apply-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.apply-feature img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.apply-feature-text h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 5px 0;
    letter-spacing: -0.02em;
}

.apply-feature-text h3 a {
    color: #6ab235;
    text-decoration: none;
}

.apply-feature-text h3 a:hover {
    text-decoration: underline;
}

.apply-feature-text p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    text-align: justify;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #000000;
}

.apply-feature-text p a {
    color: #6ab235;
    text-decoration: underline;
    font-family: 'Vectora Roman', sans-serif;
    font-weight: 700;
}

/* Direct Apply - Right Column */
.apply-right {
    flex: 1;
    max-width: 600px;
    margin-top: 80px;
}

.apply-subheading {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 35px;
}

.apply-intro {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 35px;
}

/* Direct Apply - Form */
.apply-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-row {
    display: flex;
    gap: 8px;
}

.form-row input {
    flex: 1;
    padding: 13px 15px;
    border: 1px solid #ddd;
    border-radius: 9px;
    font-family: 'Vectora Light', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-row input:focus {
    border-color: #6ab235;
}

.form-row input::placeholder {
    color: #999;
}

.form-checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 0px;
}

.form-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 0px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-family: 'Vectora Light', sans-serif;
    font-size: 11px;
    text-align: justify;
    line-height: 1.2;
    color: #000000;
}

.form-checkbox label a {
    color: #6ab235;
    text-decoration: underline;
    font-weight: 700;
    font-family: 'Vectora Bold', sans-serif;
}

.apply-button {
    background: #7be42f;
    color: #000000;
    border: 0px solid #000;
    padding: 12px 42px;
    border-radius: 28px;
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: center;
    margin-top: 25px;
}

.apply-button:hover {
    background: #000000;
    color: #ffffff;
}

/* Direct Apply - Stats Section  */
.apply-stats {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.stats-heading {
    font-family: 'Vectora Black', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0 0 8px 0;
}

.stat p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

/* Direct Apply - Responsive */
@media (max-width: 900px) {
    .apply-hero {
        flex-direction: column;
        gap: 50px;
    }

    .apply-left,
    .apply-right {
        max-width: 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .apply-page {
        padding: 0 20px;
    }

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

    .apply-heading {
        font-size: 32px;
    }
}

/*Upload Documents Page*/
/*Upload Documents Container */
.upload-page {
    max-width: 1400px;
    margin: 0 auto;
}

/*Upload Documents Hero Section - Two Columns*/
.upload-hero {
    display: flex;
    gap: 170px;
    padding: 40px 30px;
    margin-bottom: 200px;
}

/*Upload Documents - Left Column*/
.upload-left {
    flex: 1;
    max-width: 495px;
    margin-top: 40px;
}

.upload-pre-heading {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 23px;
    font-weight: 900;
    color: #6ab235;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.upload-subheading {
    font-family: 'Vectora Black', sans-serif;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    margin-top: 0px;
}

.upload-body {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    letter-spacing: 0em;
    margin-bottom: 40px;
}

/*Upload Documents - Features List*/
.upload-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.upload-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.upload-feature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: 25px;
}

.upload-feature-text h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 5px 0;
    letter-spacing: -0.03em;
}

.upload-feature-text h3 a {
    color: #6ab235;
    text-decoration: none;
}

.upload-feature-text h3 a:hover {
    text-decoration: underline;
}

.upload-feature-text p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    text-align: justify;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #000000;
}

.upload-feature-text p a {
    color: #6ab235;
    text-decoration: underline;
    font-family: 'Vectora Roman', sans-serif;
    font-weight: 700;
}

/*Upload Documents - Right Column*/
.upload-right {
    flex: 1;
    max-width: 650px;
    margin-top: 40px;
}

.upload-heading {
    font-family: 'Vectora Black', sans-serif;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.upload-intro {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 35px;
}

/*Upload Documents - Upload Form*/
.upload-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-left: 60px;
    margin-right: 60px;
}

/* Duplicate .form-row, .form-checkbox, .apply-button removed - see lines ~1771-1844 */

.bottom.section {
    max-width: 1400px;
    margin-bottom: 0px;
}

.bottom-heading {
    font-family: 'Vectora Black', sans-serif;
    font-size: 38px;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 20px;
}

.bottom-intro {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

.bottom-body {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
}

/*Upload Documents - How It Works*/
.process {
    padding: 30px 0;
    margin-bottom: 10px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-left: 100px;
    margin-right: 100px;
}

.process {
    width: 350px;
    /* or whatever width you want */
    text-align: center;
}

.process img {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    text-align: center;
}

.subhead {
    font-family: 'Vectora Black', sans-serif;
    font-size: 33px;
    color: #000000;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
    line-height: normal;
    text-align: left;
    margin-left: 110px;
}

.process h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    color: #6ab235;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    line-height: normal;
    text-align: center;
}

.process p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    line-height: 1.5em;
    color: #000000;
    text-align: center;
}

.afterthought {
    display: block;
}

.afterthought p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 200px;
    margin-top: 20px;
}

.afterthought p a {
    font-size: 18px;
    color: #6ab235;
    font-weight: 700;
}


/* ========================================
   UPLOAD STIPS PAGE
   ======================================== */

/* The whole page container */
.upload-stips-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Two columns side by side */
.hero-columns {
    display: flex;
    gap: 120px;
    padding: 60px 0;
    align-items: flex-start;
}

/* Left column */
.hero-left {
    flex: 1;
    max-width: 500px;
}

/* The h2 inside hero-left */
.hero-left h2 {
    font-family: 'Vectora Black', sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 10px;
}

.hero-left h2 .green {
    color: #6ab235;
}

/* The p directly inside hero-left (the intro text) */
.hero-left>p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
}

/* Container for all the features */
.left-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-left: 20px;
}

/* Each feature row */
.stip-feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    width: 420px;
}

/* The text part of each feature */
.left-feature-text h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #000000;
    margin: 0 0 5px 0;
    text-align: left;
}

.left-feature-text p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    text-align: justify;
}

.left-feature-text p a {
    color: #6ab235;
    text-decoration: underline;
    font-weight: 700;
}

.left-features img {
    width: 45px;
    height: 45px;
}

/* Right column */
.hero-right {
    flex: 1;
    max-width: 650px;
    margin-bottom: 150px;
}

.right-body-text h1 {
    font-family: 'Vectora Black', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0 0 5px 0;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.right-body-text p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin-bottom: 35px;
}

.right-body-text h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #6ab235;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
}

.upload-stips-page a {
    color: #6ab235;
    font-weight: 700;
    text-decoration: underline;
}

/* ========================================
   DEBT SCHEDULE PAGE
   ======================================== */

/* The whole page container */
.debt-sheet-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Two columns side by side */
.debt-sheet {
    display: flex;
    gap: 100px;
    padding: 60px 0;
    align-items: flex-start;
}

/* Left column */
.left-debt {
    flex: 1;
    max-width: 470px;
}

/* The h2 inside hero-left */
.left-debt h2 {
    font-family: 'Vectora Black', sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 20px;
}

.left-debt h2 .green {
    color: #6ab235;
}

.left-debt h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #6ab235;
}

/* The p directly inside hero-left (the intro text) */
.left-debt p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
    margin-bottom: 20px;
}

/* Container for all the features */
.left-debt-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-left: 20px;
}

/* Each feature row */
.debt-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 460px;
}

/* The text part of each feature */
.left-debt-text h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #000000;
    text-align: left;
}

.left-debt-text p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    text-align: justify;
}

.left-debt-text p a {
    color: #6ab235;
    text-decoration: underline;
    font-weight: 700;
}

.debt-body {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
    margin-left: 10px;
}

.debt-bullets {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 17px;
    text-align: justify;
    margin-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.left-debt img {
    width: 40px;
    height: 40px;
}

/* Right column */
.right-debt {
    flex: 1;
    margin-bottom: 250px;
    align-items: center;

    justify-content: center;
}

.right-debt-text h1 {
    font-family: 'Vectora Black', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0 0 5px 0;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.right-debt-text p {
    font-family: 'Vectora Roman', sans-serif;
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin-bottom: 35px;
}

.right-debt-text h3 {
    font-family: 'Vectora Bold', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #6ab235;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
}

.debt-sheet-page a {
    color: #6ab235;
    font-weight: 700;
    text-decoration: underline;
}

.debt-upload {
    display: inline-block;
    width: 600px;
    justify-content: center;
    /* Centers children horizontally */
    /* To center vertically as well, add: */
    align-items: center;
    /* Centers children vertically */
}