/* Scott's Students Page Specific Styles */
/* Extends contact.css for the ScottsStudents.html page */

/* Banner Heading: Scott's Students + Success Icon */
.scotts-students-banner {
    font-family: 'Century Gothic', 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 18px;
}

.scotts-students-banner .success-icon {
    width: 55px;
    height: auto;
    vertical-align: middle;
}

/* Form Instruction Text (50% reduced from default) */
.form-instruction {
    font-size: 0.875rem;
    /* 14px, roughly 50% smaller than h1 */
    color: var(--dark-grey);
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-instruction strong {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Intro Questions Paragraph */
.intro-questions {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 28px;
}

.intro-questions strong {
    font-weight: 600;
    color: var(--text-dark, #222);
}

/* Info Section Overrides */
.scotts-students-info h1 {
    font-size: clamp(36px, 6vw, 48px);
    line-height: 1.2;
    margin-bottom: 35px;
}

/* Info List Styling */
.students-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.students-info-list li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-grey);
}

/* Custom bullet point styling */
.students-info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary-blue), #00a8d4);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 140, 188, 0.3);
}

/* Field Description for Message */
.field-description {
    font-size: 14px;
    color: var(--dark-grey);
    opacity: 0.75;
    margin-bottom: 12px;
    margin-top: -4px;
    line-height: 1.5;
}



/* Responsive Adjustments */
@media (max-width: 900px) {
    .scotts-students-banner {
        font-size: clamp(28px, 5vw, 38px);
    }

    .scotts-students-banner .success-icon {
        width: 48px;
    }

    .intro-questions {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .students-info-list {
        gap: 20px;
    }

    .students-info-list li {
        padding-left: 28px;
    }

    .students-info-list li::before {
        top: 8px;
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 600px) {
    .scotts-students-banner {
        font-size: clamp(24px, 7vw, 32px);
        gap: 10px;
    }

    .scotts-students-banner .success-icon {
        width: 45px;
    }

    .form-instruction {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .intro-questions {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .scotts-students-info h1 {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 28px;
    }

    .students-info-list {
        gap: 18px;
    }

    .students-info-list li {
        padding-left: 24px;
        font-size: 15px;
    }

    .students-info-list li::before {
        top: 7px;
        width: 8px;
        height: 8px;
    }

    .field-description {
        font-size: 13px;
    }
}