* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body #wrapper-container #main-content {
    background-color: #eff6ff;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #E8F0FE;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.top_site_main.style_heading_2 .page-title-wrapper {
	padding: 65px 0px !important;
}
.fstep_spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.form-container {
    max-width: 768px;
    width: 100%;
    margin: 0;
    padding: 0;
}
.content-area .site-content {
    padding: 60px 15px 60px !important;
}
.dcgd_gravity_divi_wrapper .gform_wrapper {
    margin: 0px !important;
}
.footer-bottom .container {
	width: 100%;
	padding: 0px;
}
.step {
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
}

.step.active {
    display: flex;
    opacity: 1;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Landing Page - Centering handled by .step class */

#landing-page .card {
    text-align: center;
}
.card p, .card input, .card textarea, .card select {
    font-family: Arial, sans-serif;
}
#landing-page h1 {
    font-size: 24px;
    font-weight: bold;
    color: #101828;
    margin-bottom: 16px;
	margin-top: 0px !important;
    font-family: Tahoma, Arial, sans-serif !important;
}

.intro-text {
    font-size: 18px;
    color: #364153;
    margin-bottom: 32px;
}

.info-box p {
    font-size: 15px;
    color: #364153;
    text-align: center;
}
.info-box {
    background: #f2f6f9 !important;
	box-shadow: unset !important;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px !important;
	border-radius: 16.4px !important;
}

/* Shared progress bar wrapper — sits outside step divs, shown/hidden by JS */
.progress-bar-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
}

/* Progress Line */
.progress-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
    padding-top: 5px;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    height: 7px;
    background: #ffffff99;
    z-index: 0;
    border-radius: 2px;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 7px;
    background: linear-gradient(90deg, #025489, #7d9ab6 100%);
    z-index: 1;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: var(--progress-width, 0%);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
    will-change: width;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding-top: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 40px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #99a1af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 8px;
    border: 3px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: scale(1);
}

.step-circle:active {
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: #025489;
    color: white;
    border-color: unset;
    box-shadow: unset;
    border: unset;
}

.progress-step.active .step-circle {
    background: white;
    color: #101828;
    border-color: unset;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px oklab(67.4203% -.020052 -.0489037 / .3);
    border: unset;
    font-size: 14px;
    line-height: 20px;
}

.progress-step span {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 700;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: Arial, Tahoma, sans-serif;
    line-height: 16px;
}

.progress-step.completed span {
    color: #101828;
    font-weight: 600;
}

.progress-step.active span {
    color: #101828;
    font-weight: 600;
}

/* Form Styles */
.form-header {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-header-text {
    flex: 1;
}

.form-icon {
    background: #e5edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.form-icon svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
	color: #025489 !important;
}

#step-1 .form-header-text h2, 
#step-2 .form-header-text h2,
#step-3 .form-header-text h2,
#step-4 .form-header-text h2,
#step-5 .form-header-text h2,
#step-6 .form-header-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    display: block;
    line-height: 32px;
	font-family: Tahoma, Arial, sans-serif !important;
	margin: unset;
}

.form-subtitle {
    color: #4a5565;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
    opacity: 1;
}
.form-group input::placeholder {
    font-size: 15px;
/*     padding-left: 10px; */
	font-weight: 300;
}
/* .form-group input[type="date"] {
    font-size: 16px !important;
    padding-left: 6px !important;
} */
.step.active .form-group {
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--delay, 0) * 0.05s);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.form-row-two {
    grid-template-columns: repeat(2, 1fr);
}

label {
    display: block;
    font-weight: 700;
    color: #364153;
    margin-bottom: 8px !important;
    font-size: 14px;
    font-family: Tahoma, Arial, sans-serif;
    line-height: 20px;
    display: inline-block;
}
.skip {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: oklch(98.5% 0.002 247.839);
    border-radius: 16.4px;
    transition: all 0.2s ease;
}
.skip label {
    margin-bottom: 0px !important;
    display: flex;
    font-size: 14px;
    gap: 12px;
	align-items: center;
}

.skip:hover {
    transition: all 0.2s ease;
    color: #f6f3f4;
	background:color-mix(in oklab, #7d9ab6 10%, transparent);
}
.label-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.label-wrapper label {
    margin-bottom: 0;
}

#step-1 span.required, 
#step-2 span.required,
#step-3 span.required,
#step-4 span.required,
#step-5 span.required,
#step-6 span.required {
    color: #025489 !important;
}

.optional {
    color: #99a1af;
    font-size: 12px;
    font-weight: 400;
	font-family: Tahoma, Arial, sans-serif;
}
.section-title.pre {
    margin-top: 20px;
    border-top: 1px solid #e5e5e5;
    padding-top: 24px;
}
.card input[type="text"],
.card input[type="email"],
.card input[type="tel"],
.card input[type="date"],
.card textarea,
.card select {
    width: 100%;
    padding: 12px 15px !important;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px !important;
    font-family: inherit;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 16.4px;
                height: 50px;
	min-width: unset;
}
.card textarea {
    height: 146px;
    resize: none;
}
.card input:focus,
.card textarea:focus,
.card select:focus {
    outline: none;
    border-color: #025489;
    border: 2px solid #e5e5e5;
}

.card .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field-hint {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 12px;
}

/* Grade Level Grid */
.grade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.grade-option {
    position: relative;
    cursor: pointer;
	margin: 0px !important;
}

.grade-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.grade-card {
	padding: 16px;
    border: 1px solid #ebe6e7;
    border-radius: 16.4px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: oklch(98.5% 0.002 247.839);
}

.grade-card div:first-child {
    font-weight: 700;
    color: #364153;
    margin-bottom: 0;
    font-size: 14px;
    font-family: Tahoma, Arial, sans-serif;
    line-height: 20px;
}

.grade-card div:last-child {
    font-size: 12px;
    color: #364153;
	opacity: 0.8;
    font-family: Tahoma, Arial, sans-serif;
	margin-top: 4px;
}

.grade-option input[type="radio"]:checked + .grade-card {
    background: #025489;
    border-color: #025489;
    color: white;
}

.grade-option input[type="radio"]:checked + .grade-card div {
    color: white;
}

@media (hover: hover) {
    .grade-option:hover .grade-card {
        transform: scale(1.02);
        background: color-mix(in oklab, #7d9ab6 10%, transparent);
    }
}

/* Button Groups (Checkboxes styled as buttons) */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-button {
    position: relative;
    cursor: pointer;
}

.checkbox-button input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}
.label-wrap {
    display: flex;
    gap: 8px;
}
.checkbox-button span {
    display: inline-block;
    padding: 16px;
    outline: 1px solid #E5E7EB;
    background: oklch(98.5% 0.002 247.839);
    color: #364153;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: scale(1);
    border-radius: 16.4px;
	width: 100%;
	text-align: center;
}
label.checkbox-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 31%;
	border-radius: 16.4px;
}
@media (hover: hover) {
    .checkbox-button span:hover {
        background: oklab(67.4203% -.020052 -.0489037 / .1);
    }
    label.checkbox-button:hover {
        transform: scale(1.02);
    }
}
#subject-form .checkbox-button span {
   width: 100%;
}
#subject-form .checkbox-button, form#parent-form .checkbox-button {
    width: 32%;
	margin: 0px !important;
}
#subject-form .form-group.week label.checkbox-button, form#parent-form .checkbox-button span{
    width: 100%;
}
form#parent-form .checkbox-button span {
    text-align: center;
}
#subject-form .button-group.preference span {
    justify-content: center;
}
#subject-form .checkbox-button input[type="checkbox"]:checked + span,
#parent-form .checkbox-button input[type="checkbox"]:checked + span {
    background: #025489;
    border-color: unset;
    color: white;
}
#subject-form .form-group.week .checkbox-button input[type="checkbox"]:checked + span {
    background: #025489;
    border-color: unset;
    color: white;
}
#subject-form .checkbox-button span {
    display: inline-block;
    padding: 16px;
    outline: 1px solid #E5E7EB;
    background: oklch(98.5% 0.002 247.839);
    color: #364153;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: scale(1);
    border-radius: 16.4px;
    height: unset;
	display: flex;
    align-items: center;
}
@media (hover: hover) {
    #subject-form .checkbox-button:hover span,
    #parent-form .checkbox-button:hover span {
        border-color: #3B82F6;
        transform: scale(1.02);
        background: oklab(67.4203% -.020052 -.0489037 / .1);
    }
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 2px;
    margin-top: 12px;
    flex-direction: column;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: oklch(.985 .002 247.839);
    padding: 16px;
    border-radius: 16px;
}
/* label.radio-option:hover {
    background: #f6f3f4;
} */
.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
}

.radio-option span {
    font-size: 14px;
    color: #374151;
}
.cridet-svg-txt svg {
    color: oklch(.551 .027 264.364);
}
/* Section Titles */
.section-title {
    font-size: 14px;
    font-weight: 700;
    color: oklch(.373 .034 259.733);
    margin: 32px 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
	font-family: Tahoma, Arial, sans-serif !important;
}

.section-title:first-of-type {
    margin-top: 0;
    color: #4a5565;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.info-text {
    color: #4B5563;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}
.card input#skipPayment {
    width: 20px;
    height: 20px;
    margin-right: 9px;
}
.security-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #6a7282;
    font-size: 12px;
    margin-bottom: 20px;
}
.skip input[type=checkbox], input[type=radio] {
    margin: 2px 0 0;
	height: 20px;
	width: 20px;
}
.skip input[type=checkbox]:checked:before {
	font-size: 15px !important;
	display: flex !important;
    align-items: center !important;
    justify-content: center !important;
	padding: 8px !important;
}
.security-icon {
    font-size: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
	margin-top: 0px;
}

.checkbox-container {
    padding: 16px;
    border-radius: 16px;
    border: 2px solid;
}

.checkbox-container-blue {
    background: oklab(0.432502 -0.04466 -0.101321 / 0.0651324) !important;
    border: 1px solid #bed3e7 !important;
}
.checkbox-container-blue:hover {
	background: oklab(43.2502% -.04466 -.101321 / .1) !important;
}

#step-6 .checkbox-container-white {
	border: unset;
    background:oklch(.985 .002 247.839) !important;
}
#step-6 .checkbox-container-white:hover {
	background: oklch(.967 .003 264.542) !important;
	border: unset;
}
.checkbox-container:hover {
    background: #f6f3f4;
    transition: background 0.2s ease;
}

.form-group .checkbox-container {
    margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.highlight-box.yellow {
    background: #fef9ef;
    border: 2px solid #fce1ac;
    border-radius: 16.4px;
}
.highlight-box.blue {
    background: #eef3fe;
    border: 2px solid #bed3e7;
    border-radius: 16.4px;
}
.form-group.sibling {
    margin-bottom: 0px;
}
.form-group.sibling-ref {
    margin-bottom: 12px;
}
.highlight-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
#step-4 select.form-select {
    height: 45px;
}
#step-4 .card select:focus {
    box-shadow: unset;
    border: 2px solid #025489;
}
#step-4 input[type="radio"]:checked:before {
	width: 10px;
	height: 10px;
}
#step-3 input[type=checkbox]:focus, #step-3 input[type=file]:focus, #step-3 input[type=radio]:focus, 
#step-4 input[type=checkbox]:focus, #step-4 input[type=file]:focus, #step-4 input[type=radio]:focus, 
#step-5 input[type=checkbox]:focus, #step-5 input[type=file]:focus, #step-5 input[type=radio]:focus, 
#step-6 input[type=checkbox]:focus, #step-6 input[type=file]:focus, #step-6 input[type=radio]:focus{
	outline: unset !important;
	box-shadow: unset;
}
.section-title.pre p {
    font-size: 12px;
    color: #6a7282;
}
.signature-buttons button#clear-signature {
    color: #fff;
}
div#parent-form label.checkbox-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 32%;
    border-radius: 16.4px;
}

.highlight-icon {
    font-size: 20px;
}
.highlight-box.blue a.link {
    color: rgb(2, 84, 137);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
}
#step-4 .form-group label {
    color: oklch(.373 .034 259.733);
}
.highlight-box p {
    color: oklch(0.446 0.03 256.802);
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
/* 	padding-left: 28px; */
}
#step-5 .highlight-box p {
	padding-left: 28px;
	font-size: 14px;
}
#step-5 .highlight-box.yellow p {
	padding-left: 33px;
    color: oklch(0.446 0.03 256.802);
    font-weight: 700;
}
.highlight-header input#charge_credit_card {
    margin-right: 13px;
    margin-top: 0px;
}
.highlight-header label {
    margin-bottom: 0px !important;
}
.link {
    color: #025489;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* Liability Text */
.liability-text {
    max-height: 500px;
    overflow-y: auto;
    padding: 24px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: #F9FAFB;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
}

.liability-text h3 {
    font-size: 14px;
    color: oklch(.373 .034 259.733);
    margin: 30px 0 30px 0;
}

.liability-text h3:first-child {
    margin-top: 0;
}

.liability-text h4 {
    font-size: 15px;
    font-weight: 400;
    color: #374151;
    margin: 16px 0 8px 0;
}

.liability-text ul {
    margin-left: 0;
    margin-top: 22px;
    margin-bottom: 22px;
}
.checkbox-container.checkbox-container-blue label,
.checkbox-container.checkbox-container-white label {
	margin: unset !important;
}
.checkbox-container.checkbox-container-blue span, .checkbox-container.checkbox-container-white span {
    color: oklch(0.373 0.034 259.733);
    font-weight: 700;
}
.liability-text ul li {
    margin-left: 0 !important;
    list-style: disc;
    overflow: visible;
    list-style-position: inside;
    margin-bottom: 20px;
}

.liability-text p {
    margin-bottom: 22px;
	color: oklch(0.373 0.034 259.733)
}
.liability-text p:nth-last-of-type(-n+4) {
    margin-bottom: 0px !important;
}
.liability-contact {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}
.liability-text strong {
    color: oklch(0.373 0.034 259.733);
    font-weight: 300;
}
.liability-contact p {
    margin-bottom: 4px;
    color: #4B5563;
    font-size: 13px;
}

.liability-contact p:first-child {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
}

.enroll-btn-next,
.enroll-btn-back,
.enroll-btn-submit {
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    transform: scale(1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Begin Enrollment Button (Landing Page) */
.enroll-btn-begin {
    background: #025489;
    color: white;
    width: 100%;
    font-family: Tahoma, Arial, sans-serif;
    font-weight: bold;
    line-height: 24px;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.enroll-btn-begin svg {
    flex-shrink: 0;
    vertical-align: middle;
}

.enroll-btn-begin:hover {
    background: #025489;
    color: #fff;
}

.enroll-btn-begin:active {
    transform: scale(0.98);
}

/* Form Navigation Buttons (Next/Back) */
.enroll-btn-next {
    background: #025489;
    color: white;
    flex: 1;
    max-width: 50%;
    font-family: inherit;
    font-weight: 600;
    border-radius: 16.4px;
}

.enroll-btn-next:hover {
    background: #025489;
    color: #fff;
}

.enroll-btn-next:active {
    transform: scale(0.98);
}

.enroll-btn-next:disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    box-shadow: none;
}

.enroll-btn-next:disabled:hover {
    background: #E5E7EB;
    color: #9CA3AF;
    transform: scale(1);
    box-shadow: none;
}

.enroll-btn-back {
	background: transparent;
    color: #364153;
    border: 2px solid #d1d5dc;
    flex: 1;
    max-width: 50%;
    border-radius: 16.4px;
}

.enroll-btn-next svg,
.enroll-btn-back svg {
    flex-shrink: 0;
    vertical-align: middle;
}

.enroll-btn-back:hover {
	background: oklch(.985 .002 247.839);
    color: oklch(0.373 0.034 259.733);
    border: 2px solid oklch(0.872 0.01 258.338);
}

.enroll-btn-back:active {
    transform: scale(0.98);
}

.enroll-btn-submit {
    background: #025489;
    color: #fff;
    border: 2px solid #025489;
    margin: 20px auto 0;
    display: block;
    border-radius: 16px;
    width: 100%;
}

.enroll-btn-submit:hover {
    background: #025489;
    color: #fff;
    border-color: #025489;
    box-shadow: 0 4px 12px rgba(2, 84, 137, 0.3);
}

.enroll-btn-submit:active {
    transform: scale(0.98);
}

/* Confirmation Page */
.confirmation-card {
    text-align: center;
    padding: 30px;
}
.confirmation-card h1 {
    font-weight: bold;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #025489;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.confirmation-card h1 {
    font-size: 36px;
    color: #101828;
    margin-bottom: 16px;
    font-family: Tahoma, Arial, sans-serif !important;
    font-weight: bold !important;
}

.confirmation-text {
    color: #364153;
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 29px;
}

.summary-box {
    background: #f2f6f9;
    border-radius: 16.4px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.summary-box h3 {
    font-size: 14px;
    font-weight: 700 !important;
    color: #4a5565;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    margin-bottom: 16px;
    font-family: Tahoma, Arial, sans-serif !important;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.summary-label {
    color: #4a5565;
    font-size: 14px;
    line-height: 20px;
}

.summary-value {
    color: #101828;
    font-size: 14px;
    text-align: right;
    font-weight: 700;
    font-family: Arial, Tahoma, sans-serif;
    line-height: 20px;
}

.next-steps-box {
    background: #f2f6f9;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
    border: 2px solid #f2f6f9;
}

.next-steps-box h3 {
    font-size: 18px;
    font-weight: 700 !important;
    color: #1F2937;
    margin-bottom: 16px;
}

.next-steps-box ul {
    list-style: none;
    padding: 0;
    margin-left: 15px;
}

.next-steps-box li {
    font-family: Arial, Tahoma, sans-serif;
    padding: 4px 0;
    color: #364153;
    font-size: 14px;
    padding-left: 3px;
    position: relative;
    list-style: initial !important;
}

.next-steps-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #025489;
    font-weight: 700;
}

.next-steps-box a {
    color: #3B82F6;
    text-decoration: underline;
}

.footer-text {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.6;
}

.footer-text p {
    margin-bottom: 8px !important;
    color: #6a7282;
}

.footer-text a {
    color: #025489;
    text-decoration: none;
    font-weight: 700;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Error States */
.form-group.error label {
    color: #EF4444;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #EF4444;
}

.form-group.error::after {
    content: attr(data-error-msg);
    color: #EF4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.checkbox-button.active {
    background: #025489;
    color: #fff;
}

.signature-wrapper{
   	border: unset;
    padding: 0;
    background: #fff;
}
#step-6 p.sign-text {
    color: oklch(.551 .027 264.364);
    font-size: 12px;
    line-height: 16px;
}
#step-6 .timestamp {
    background: #f9fafb;
    border: 1px solid oklch(.928 .006 264.531);
    padding: 12px;
    border-radius: 10px;
	margin-top: 9px;
}
#step-6 .timestamp p {
    font-size: 12px;
    color: oklch(0.446 0.03 256.802);
    line-height: 16px;
}
#step-6 .timestamp p span {
    font-weight: 700;
}
#signature-pad{
/* 	width: 100%; */
    height: 200px;
    border: 2px solid #d1d5dc;
    background: #fff;
    border-radius: 16.4px;
}

.signature-buttons{
    margin-top:0px;
}
.signature-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skip input, .highlight-header input#charge_credit_card {
    border: 1px solid #d1d5dc;
    border-radius: 0.25rem;
/*     margin: 0px 0 0; */
}
.skip input[type=checkbox]:checked, .highlight-header input#charge_credit_card[type=checkbox]:checked {
    border: 1px solid #025489;
	background-color: #025489 !important;
}
.skip input[type=checkbox]:checked:before, .highlight-header input#charge_credit_card[type=checkbox]:checked:before {
    background: #025489 !important;
    color: white !important;
    padding: 1px;
    font-size: 10px;
    height: 100%;
    display: flex;
    align-items: center;
	border: 1px solid #025489;
	background-color: #025489 !important;
}
div#step-4 input[type="radio"]:checked:focus:before {
    margin: 0px;
    top: 3px;
    position: relative;
    left: 3px;
}
div#step-4 input[type="radio"]:checked:before {
    margin: 0px;
    top: 4px;
    position: relative;
    left: 4px;
}
.highlight-box.blue, .highlight-box.yellow {
    background-color: 
color-mix(in oklab, #025489 5%, transparent) !important;
    border: 0px solid #bed3e7;
    border-radius: 16.4px;
}
.highlight-header svg {
    color: #025489;
}
.highlight-header strong {
    font-size: 14px;
    font-family: Tahoma, Arial, sans-serif;
    color: oklch(0.21 0.034 264.665);
}
.signature-buttons button#clear-signature {
    color: #fff;
    background: transparent;
    color: red;
    padding: 0px;
    font-size: 12px;
    text-align: right;
    float: right;
}
#step-5 .highlight-box.blue {
    border: 2px solid #bed3e7;
}
#step-5 .highlight-header input#charge_credit_card {
    width: 20px;
    height: 20px;
}
#step-5 .highlight-header input#charge_credit_card[type=checkbox]:checked:before {
	font-size: 15px !important;
}
#step-5 .highlight-box.yellow {
    background-color: #fdf1d8 !important;
    border: 2px solid #fce1ac;
    border-radius: 16.4px;
}
.credit-bottom-text{
	color: oklch(55.1% 0.027 264.364);
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0px;
}
.cridet-svg-txt {
    display: flex;
    animation: c;
    align-items: center;
    grid-gap: 8px;
}
/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .form-container {
        max-width: 100%;
        padding: 0 24px;
    }

    .card {
        padding: 32px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row-two {
        grid-template-columns: repeat(2, 1fr);
    }

    .grade-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #subject-form .checkbox-button,
    form#parent-form .checkbox-button {
        width: 48%;
    }

    .button-group {
        gap: 10px;
    }
}

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

    .step.active {
        padding: 24px 16px;
    }

    .card {
        padding: 24px;
        border-radius: 12px;
    }

    .form-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    .form-header-text h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .form-subtitle {
        font-size: 13px;
    }

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

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

    .grade-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .grade-card {
        padding: 10px;
    }

    .progress-line {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }

    .progress-step {
        flex: 0 0 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
    }

    .progress-step span {
        font-size: 10px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .enroll-btn-next,
    .enroll-btn-back {
        max-width: 100%;
        width: 100%;
    }

    .enroll-btn-begin {
        padding: 14px 24px;
        font-size: 15px;
    }

    /* Button Groups */
    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    #subject-form .checkbox-button,
    form#parent-form .checkbox-button {
        width: 100%;
    }

    .checkbox-button span {
        padding: 12px 16px;
        font-size: 14px;
    }

    #subject-form .checkbox-button span {
        height: auto;
        line-height: 1.4;
    }

    /* Checkbox Containers */
    .checkbox-container {
        padding: 14px;
    }

    /* Summary Box */
    .summary-box {
        padding: 20px;
        margin-bottom: 24px;
    }

    .summary-item {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .summary-value {
        text-align: left;
    }

    /* Next Steps Box */
    .next-steps-box {
        padding: 20px;
        margin-bottom: 24px;
    }

    .next-steps-box h3 {
        font-size: 16px;
    }

    /* Confirmation Page */
    .confirmation-card h1 {
        font-size: 28px;
    }

    .confirmation-text {
        font-size: 18px;
        line-height: 26px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        font-size: 36px;
        margin-bottom: 20px;
    }

    /* Logo */
    .logo-image {
        max-width: 160px;
    }

    /* Section Titles */
    .section-title {
        font-size: 16px;
        margin: 24px 0 12px 0;
    }

    /* Info Box */
    .info-box {
        padding: 20px;
        margin-bottom: 24px;
    }

    /* Highlight Boxes */
    .highlight-box {
        padding: 16px;
        margin-bottom: 20px;
    }

    /* Liability Text */
    .liability-text {
        max-height: 400px;
        padding: 16px;
        font-size: 13px;
    }

    .liability-text h3 {
        font-size: 15px;
    }

    .liability-text h4 {
        font-size: 14px;
    }

    /* Footer Text */
    .footer-text {
        font-size: 11px;
        margin-top: 32px;
        padding-top: 20px;
    }
}

/* ─── Hide theme page banner on enroll page ─────────────────────────────── */
.top_heading.style_heading_2_out { display: none !important; }

/* ─── ISEE Prep Bonus Popup ─────────────────────────────────────────────── */
#isee-bonus-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 16px;
    z-index: 9999;
}

#isee-bonus-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.isee-bonus-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    margin-top: 50px;
}

#isee-bonus-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
    padding: 0;
}

#isee-bonus-close:hover {
    color: #4b5563;
}

.isee-bonus-title {
    font-size: 21px;
    text-align: center;
    margin: 0 0 24px;
    color: #111827;
    font-weight: 700 !important;
}

.isee-bonus-img-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.isee-bonus-img-wrap img {
    height: 96px;
    object-fit: contain;
}

.isee-bonus-info {
    background: rgba(2, 84, 137, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.isee-bonus-info p {
    color: #374151;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

#isee-bonus-confirm {
    width: 100%;
    padding: 12px;
    background: #025489;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 160ms ease;
}

#isee-bonus-confirm:hover {
    background: rgba(2, 84, 137, 0.88);
}

/* iOS Safari: prevent auto-zoom on input focus (triggered when font-size < 16px) */
@media screen and (max-width: 767px) {
    .card input[type="text"],
    .card input[type="email"],
    .card input[type="tel"],
    .card input[type="date"],
    .card textarea,
    .card select {
        font-size: 16px !important;
    }
}


