/* Body and Fixed Background */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* Fixed background configuration */
    background-image: url('images/wizard-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Flex to center the main container horizontally */
    display: flex;
    justify-content: center;
}

/* Central Content Container */
.main-container {
    width: 100%;
    max-width: 550px;
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

/* Top Disclaimer Banner */
.top-banner {
    background-color: #3b3b3b;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.4;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 20px 20px 10px 20px;
}

.logo {
   width: 260px;
}

/* Hero Promotion */
.hero-promo {
    width: 100%;
    text-align: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
.financing-heading {
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    color: #000;
    margin: 20px 0 10px 0;
}

.main-heading {
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: normal;
    font-size: 26px;
    color: #222;
    margin: 10px 20px 30px 20px;
}

/* Form Section */
.form-section {
    padding: 0 40px;
    margin-bottom: 30px;
}

/* Progress Tracker */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 280px;
    margin: 0 auto 30px auto;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #4a9e55;
    z-index: 1;
    transform: translateY(-50%);
}

.step {
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 2px solid #4a9e55;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #4a9e55;
    font-size: 14px;
    z-index: 2;
}

.step.active {
    background-color: #4a9e55;
    color: #fff;
}

/* Form Inputs */
.form-question {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container input {
    width: 100%;
    padding: 15px 40px 15px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.input-container input:focus {
    border-color: #4a9e55;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cc0000; /* Red color for placeholder icon */
    font-size: 18px;
}

.submit-btn {
    width: 100%;
    background-color: #e66b2e; /* Orange color matching image */
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #d45b20;
}

/* Badges */
.badges-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.badge {
    max-height: 60px;
    width: auto;
}

/* Fine Print Footer */
.fine-print {
    padding: 20px 30px 40px 30px;
    text-align: center;
    color: #666;
    font-size: 8px; /* Very small text as seen in reference */
    line-height: 1.4;
}

.fine-print p {
    margin-bottom: 10px;
}

.copyright-links a {
    color: #666;
    text-decoration: none;
}

.copyright-links a:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 500px) {
    .form-section {
        padding: 0 20px;
    }
    .main-heading {
        font-size: 22px;
    }
}
/* 1. Establish structural positioning on the body element */
body {
    position: relative;
    min-height: 100vh;
}

/* 2. Style the transparent click overlay block */
.global-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Covers everything on the standard layout layer */
    cursor: pointer;
    background-color: transparent;
}