@font-face {
    font-family: 'PeridotPE';
    src: url('./fonts/PeridotPE-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Tells the browser to load fallback text immediately, then swap when ready */
}

/* Bold weight definition */
@font-face {
    font-family: 'PeridotPE';
    src: url('./fonts/PeridotPE-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Extra Bold weight definition */
@font-face {
    font-family: 'PeridotPE';
    src: url('./fonts/PeridotPE-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Semi Bold weight definition */
@font-face {
    font-family: 'PeridotPE';
    src: url('./fonts/PeridotPE-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Core Document & Layout Architecture Settings */
body {
    font-family: PeridotPE, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #111111;
    -webkit-font-smoothing: antialiased;
}

/* 1. Header Layout Structure */
.brand-header {
    background-color: #ffffff;
    padding: 60px 0;
    background-image: url(./images/left-green.png);
    background-repeat: no-repeat;
    background-position: left top;
}
.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
}
.logo-flex {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.brand-text-green {
    color: #28b446;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* 2. Vibrant Green Hero Section */
.hero-banner {
    background-color: #e20074;
    color: #ffffff;
    padding: 50px 0;
    text-align: left;
}
.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}
.hero-banner h1 {
    font-size: 80px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-weight: 800;
}
.hero-subtitle {
    font-size: 24px;
    margin: 0;
    font-weight: 400;
}

/* 3. Text & Copy Introduction Row */
.intro-callout {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    background-image: url(./images/left-green.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}
.intro-container {
    max-width: 750px;
    margin: 0 auto;
}
.intro-callout h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.pitch-bold {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 20px 0;
}
.pitch-light {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

/* 4. Form User Registration Area (Gray Strip) */
.personal-info-section {
    background-color: #f3f3f3;
    padding: 40px 20px;
}
.form-container {
    max-width: 650px;
    margin: 0 auto;
}
.personal-info-section h3 {
    font-size: 20px;
    margin: 0 0 25px 0;
    text-align: left;
    font-weight: 700;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 6px;
}
.form-group label.required::after {
    content: "*";
    color: #e20074;
}
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    font-size: 15px;
    color: #222222;
    border-radius: 0; /* Boxy inputs styling native to profile reference */
    box-sizing: border-box;
}
.form-group input::placeholder {
    color: #aaaaaa;
}

/* 5. Pink Quiz Background Section */
.quiz-outer-wrapper {
    background-color: #e20074;
    padding: 50px 20px 80px 20px;
}
.quiz-title-head {
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px 0;
    font-weight: 700;
}
.quiz-white-card {
    background-color: #ffffff;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* 6. Dynamic Question Card Styling */
.question-block {
    margin-bottom: 40px;
}
.question-text {
    font-size: 18px;
    color: #111111;
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.q-num {
    font-weight: bold;
}
.quiz-option-label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #444444;
    margin-bottom: 14px;
    cursor: pointer;
    line-height: 1.2;
}

/* Redesigning checkboxes to align with the visual wireframe look */
.quiz-option-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #cccccc;
    margin-right: 14px;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
}
.quiz-option-label input[type="checkbox"]:checked {
    border-color: #e20074;
    background-color: #e20074;
}
.quiz-option-label input[type="checkbox"]:checked::before {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* 7. Under-Quiz Legal and Disclaimers block */
.required-indicator {
    font-size: 11px;
    color: #888888;
    margin: 0 0 15px 0;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #cccccc;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
}
.checkbox-group input[type="checkbox"]:checked {
    border-color: #28b446;
    background-color: #28b446;
}
.checkbox-group input[type="checkbox"]:checked::before {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.checkbox-group label {
    font-size: 12px;
    color: #555555;
    line-height: 1.4;
    cursor: pointer;
}
.green-link {
    color: #28b446;
    text-decoration: underline;
    font-weight: 600;
}
.green-bold {
    color: #28b446;
    font-weight: bold;
}
.legal-disclaimer {
    font-size: 11px;
    color: #777777;
    margin: 20px 0 0 0;
    line-height: 1.4;
}

/* 8. Action Control Submissions Layout Block */
.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}
button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}
.btn-submit {
    background-color: #28b446;
    color: #ffffff;
    width: 65%;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
}
.btn-submit:hover {
    background-color: #21963a;
}
.btn-reset {
    background: none;
    color: #888888;
    text-decoration: underline;
    font-size: 13px;
    padding: 5px;
    font-weight: 500;
}
.btn-reset:hover {
    color: #e20074;
}

/* 9. Site Map Corporate Footer Setup */
.brand-footer {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 0 0;
}
.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 20px;
    color: #1a365d; /* Off-black tone matching icon layout blocks */
}
.social-icon {
    cursor: pointer;
}
.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-links-row a {
    color: #111111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}
.footer-links-row a:hover {
    text-decoration: underline;
}
.footer-bottom-accent {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.optins-info-section {
    background-color: #EFEFF0;
    padding: 40px 0;
}