/* Instant Quote B - Variant with Sliders and Social Proof */
/* Standalone Template - No parent theme CSS dependencies */

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    background: linear-gradient(135deg, #1F2D69 0%, #2E5EB1 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1F2D69;
    line-height: 1.5;
}

#wrapper {
    min-height: 100vh;
}

#main {
    background: transparent;
    min-height: 100vh;
    padding: 85px 0 50px 0;
}

section {
    background: transparent;
    padding: 0;
}

/* Inactive form steps should be hidden */
.form-content-unique:not(.active-unique):not(.slide-in):not(.slide-out):not(.slide-right):not(.slide-steady) {
    display: none !important;
}

input, textarea, button {
    outline: none;
    border: none;
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.container,
.container-3 {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 1024px) {
    .container-3 {
        max-width: 750px;
    }
}

@media (min-width: 1280px) {
    .container-3 {
        max-width: 850px;
    }
}

@media (min-width: 1536px) {
    .container-3 {
        max-width: 950px;
    }
}

/* Override parent container styles */
#header .container {
    max-width: 1200px;
}

/* Social Proof Header */
.social-proof-header {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1F2D69;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 5px;
}

.trust-badge i {
    font-size: 32px;
    color: #2E5EB1;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.trust-badge span {
    display: block;
    line-height: 1.3;
}

.bbb-badge img {
    max-width: 40px;
    max-height: 40px;
    height: auto;
    display: block;
    margin: 0 auto 4px;
}

/* Trust Indicator */
.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(46, 94, 177, 0.05);
    border-radius: 6px;
    color: #2E5EB1;
    font-size: 13px;
}

.trust-indicator i {
    color: #28a745;
}

/* Slider Styles */
.slider-wrapper {
    margin: 20px 0;
}

.slider-value-display {
    text-align: center;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 700;
    color: #1F2D69;
    font-family: "Plus Jakarta Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .slider-value-display {
        font-size: 48px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1280px) {
    .slider-value-display {
        font-size: 56px;
        margin-bottom: 30px;
    }
}

.slider-value-display.currency {
    gap: 5px;
}

.slider-value-display .currency-symbol {
    font-size: 32px;
    color: #536189;
}

.slider-value-display .slider-label {
    font-size: 16px;
    font-weight: 500;
    color: #536189;
    margin-left: 8px;
}

/* Range Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #2E5EB1 0%, #2E5EB1 50%, #ddd 50%, #ddd 100%);
    outline: none;
    transition: all 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2E5EB1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(46, 94, 177, 0.4);
    transition: all 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(46, 94, 177, 0.6);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2E5EB1;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(46, 94, 177, 0.4);
    transition: all 0.2s;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(46, 94, 177, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    color: #7E8492;
    font-weight: 500;
}

/* "I'm not sure" button */
.not-sure-wrapper {
    text-align: center;
    margin-top: 15px;
}

.btn-not-sure {
    background: transparent;
    border: 2px dashed #7E8492;
    color: #536189;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-not-sure:hover {
    border-color: #2E5EB1;
    color: #2E5EB1;
    background: rgba(46, 94, 177, 0.05);
}

.btn-not-sure.active {
    background: #2E5EB1;
    color: white;
    border-style: solid;
}

.btn-not-sure i {
    font-size: 16px;
}

/* Completion Social Proof */
.completion-social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(46, 94, 177, 0.05);
    border-radius: 12px;
}

.social-proof-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1F2D69;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #536189;
    font-weight: 600;
}

.stat-stars {
    color: #FFD700;
    font-size: 18px;
    margin-top: 5px;
}

/* Form Container */
.mortgage-loan-content {
    text-align: center;
    margin-bottom: 30px;
}

.main-eyebrow {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.mortgage-loan-content h2 {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mortgage-loan-content h2.completed {
    display: none !important;
}

@media (min-width: 1024px) {
    .mortgage-loan-content h2 {
        font-size: 44px;
    }
}

@media (min-width: 1280px) {
    .mortgage-loan-content h2 {
        font-size: 50px;
    }
}

.mortgage-loan-content h2.completed {
    display: none;
    font-size: 32px;
}

.highlighted-text {
    font-weight: 900;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.highlighted-text::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 0;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M 0,7 C 5,5 8,8 12,6.5 C 16,5 20,8 25,6 C 30,4.5 35,7.5 40,5.5 C 45,4 50,7 55,5 C 60,3.5 65,6.5 70,4.5 C 75,3 80,6 85,4 C 90,2.5 95,5.5 100,3.5' stroke='%23FFD700' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.8;
}

#progress {
    margin: 20px auto;
    max-width: 500px;
    height: 6px;
}

@media (min-width: 1024px) {
    #progress {
        max-width: 600px;
    }
}

@media (min-width: 1280px) {
    #progress {
        max-width: 700px;
    }
}

.form-container-unique {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .form-container-unique {
        padding: 50px;
    }
}

@media (min-width: 1280px) {
    .form-container-unique {
        padding: 60px;
    }
}

.form-content-unique {
    display: none;
}

.form-content-unique.active-unique,
.form-content-unique.slide-in,
.form-content-unique.slide-out,
.form-content-unique.slide-right,
.form-content-unique.slide-steady {
    display: block !important;
}

.quote-subheader {
    color: #7E8492;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.form-heading-unique {
    color: #1F2D69;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .form-heading-unique {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1280px) {
    .form-heading-unique {
        font-size: 32px;
        margin-bottom: 35px;
    }
}

.form-content-unique p {
    color: #536189;
    font-size: 14px;
    text-align: center;
    margin: 8px 0;
}

.form-group-unique {
    margin-bottom: 18px;
}

.type-label {
    position: relative;
}

.type-label input[type="text"],
.type-label input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(20, 47, 87, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background: #fff;
}

.type-label input:focus {
    border-color: #2E5EB1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 94, 177, 0.1);
}

.secure {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

/* Buttons */
.button-container-unique {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-transition,
.btn-transition-back {
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-transition {
    background: #2E5EB1;
    color: white;
    flex: 1;
}

/* Make first step continue button bigger and full width */
#step-1-unique .btn-transition {
    padding: 20px 32px;
    font-size: 18px;
    width: 100%;
}

.btn-transition:hover {
    background: #1F4694;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 94, 177, 0.3);
}

.btn-transition-back {
    background: #f5f5f5;
    color: #536189;
    flex: 0 0 auto;
    padding: 12px 20px;
    font-size: 14px;
    min-width: 100px;
}

.btn-transition-back:hover {
    background: #e5e5e5;
}

.show-if-valid {
    display: none;
}

/* Radio Buttons */
.flex-row.col-2 {
    display: flex;
    gap: 15px;
}

.flex-row.col-2 label {
    flex: 1;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.flex-row.col-2 label:hover {
    border-color: #2E5EB1;
    background: rgba(46, 94, 177, 0.05);
}

.flex-row.col-2 input[type="radio"] {
    display: none;
}

.flex-row.col-2 input[type="radio"]:checked + label,
.flex-row.col-2 label:has(input[type="radio"]:checked) {
    background: #2E5EB1;
    color: white;
    border-color: #2E5EB1;
}

/* SMS Consent */
.sms-consent-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: rgba(46, 94, 177, 0.05);
    border-radius: 8px;
}

.sms-consent-text {
    font-size: 12px;
    color: #536189;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Validation */
.is-invalid {
    border-color: #dc3545 !important;
}

.field-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

/* Animations */
.slide-right {
    display: block !important;
    transform: translateX(100%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.slide-in {
    display: block !important;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.4s ease;
    transform: translateX(0);
    opacity: 1;
    position: relative;
}

.slide-out {
    display: block !important;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.4s ease;
    transform: translateX(-100%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.slide-steady {
    display: block !important;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.4s ease;
    transform: translateX(0);
    opacity: 1;
    position: relative;
}

.no-transition {
    transition: none !important;
}

/* Conditional visibility - Hidden by default */
.age-inquiry-buttons,
.youngest-age-fields,
.age-requirement-not-met {
    display: none;
}

/* Youngest owner fields visible by default */
.youngest-owner-fields {
    display: block;
}

/* Header */
#header {
    background: rgba(31, 45, 105, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-main {
    background: transparent;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-call {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.header-call:hover {
    background: rgba(255, 255, 255, 0.3);
}

.header-call a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}


/* Responsive */
@media (max-width: 768px) {
    #main {
        padding: 75px 0 30px 0;
    }

    .container-3 {
        padding: 15px;
    }

    .form-container-unique {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .mortgage-loan-content h2 {
        font-size: 32px;
    }

    .form-heading-unique {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .slider-value-display {
        font-size: 34px;
        margin-bottom: 12px;
    }
    
    .slider-wrapper {
        margin: 15px 0;
    }
    
    .button-container-unique {
        margin-top: 20px;
    }
    
    .not-sure-wrapper {
        margin-top: 12px;
    }
    
    .form-group-unique {
        margin-bottom: 15px;
    }
    
    .form-content-unique p {
        margin: 6px 0;
        font-size: 13px;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        min-width: 100px;
        font-size: 12px;
    }

    .trust-badge i {
        font-size: 24px;
    }

    .button-container-unique {
        flex-direction: column;
    }

    .completion-social-proof {
        flex-direction: column;
        gap: 25px;
    }

    .social-proof-header {
        padding: 15px;
        margin-top: 25px;
    }

    .next-step-cta {
        padding: 25px 20px;
    }

    .next-step-cta h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .mortgage-loan-content h2 {
        font-size: 26px;
    }

    .slider-value-display {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .btn-not-sure {
        font-size: 14px;
        padding: 10px 20px;
    }

    .form-container-unique {
        padding: 20px 15px;
    }
    
    .form-heading-unique {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .slider-wrapper {
        margin: 12px 0;
    }
    
    .button-container-unique {
        margin-top: 18px;
    }
    
    .not-sure-wrapper {
        margin-top: 10px;
    }
    
    .form-group-unique {
        margin-bottom: 12px;
    }
    
    .form-content-unique p {
        margin: 5px 0;
        font-size: 13px;
    }
    
    .quote-subheader {
        margin-bottom: 6px;
    }
    
    .social-proof-header {
        margin-top: 20px;
        padding: 12px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .trust-badge {
        width: 100%;
    }

    .btn-start-application {
        font-size: 18px;
        padding: 18px 32px;
        width: 100%;
        justify-content: center;
        min-height: 56px;
    }

    .next-step-section {
        padding: 25px 15px;
    }

    .next-step-heading {
        font-size: 22px !important;
    }

    .next-step-description {
        font-size: 17px !important;
    }

    .completion-thank-you {
        font-size: 30px !important;
    }

    .completion-main-message {
        font-size: 19px !important;
    }

    .completion-phone-info {
        font-size: 16px !important;
    }

    .completion-phone-info strong {
        font-size: 17px !important;
    }

    .completion-social-proof {
        flex-direction: column;
        gap: 15px;
    }

    .social-proof-stat {
        width: 100%;
    }
}

/* Success Icon */
.success-icon {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
    animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Completion Text Styles - Optimized for Senior Audience */
.completion-thank-you {
    color: #1F2D69;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 15px;
    line-height: 1.3;
}

.completion-main-message {
    font-size: 22px;
    color: #1F2D69;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.completion-phone-info {
    margin-top: 20px;
    font-size: 17px;
    color: #7E8492;
    line-height: 1.6;
}

.completion-phone-info strong {
    color: #1F2D69;
    font-size: 18px;
    font-weight: 700;
}

.completion-hours-info {
    font-size: 15px;
    color: #999;
    margin-top: 8px;
    line-height: 1.5;
}

/* Completion Divider */
.completion-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD44D, transparent);
    margin: 30px auto;
}

/* Next Step Section */
.next-step-section {
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 25px 0 35px;
}

.next-step-heading {
    color: #1F2D69;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.next-step-description {
    color: #7E8492;
    font-size: 19px;
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 400;
}

/* Yellow CTA Button - Large and Easy to Click */
.btn-start-application {
    background: linear-gradient(135deg, #FFD44D 0%, #FFC61A 100%);
    color: #1F2D69;
    padding: 20px 45px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(255, 212, 77, 0.3);
    min-height: 60px;
}

.btn-start-application:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 212, 77, 0.5);
    background: linear-gradient(135deg, #FFC61A 0%, #FFD44D 100%);
}

.btn-start-application:active {
    transform: translateY(0);
}

.btn-start-application i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.btn-start-application:hover i {
    transform: translateX(4px);
}

/* Next Step CTA */
.next-step-cta {
    background: linear-gradient(135deg, #2E5EB1 0%, #1F4694 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    color: white;
}

.next-step-cta .cta-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.next-step-cta h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.next-step-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Countdown Circle */
.redirect-countdown {
    margin-top: 25px;
}

.countdown-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

#countdown-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.redirect-countdown p {
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
}

#countdown-text {
    font-weight: 700;
    font-size: 16px;
}

/* CTA Buttons */
.btn-redirect-now {
    background: white;
    color: #2E5EB1;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 5px;
}

.btn-redirect-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cancel-redirect {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    margin: 10px 5px;
}

.btn-cancel-redirect:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
#footer {
    background: rgba(31, 45, 105, 0.95);
    padding: 40px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-legal .legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 10px auto;
}

.footer-legal a {
    color: #FFD44D;
    text-decoration: underline;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Progress bar animation */
@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

#progress svg {
    animation: progressPulse 2s ease-in-out infinite;
}

