* {
    font-family: "Poppins", sans-serif;
}

.logo {
    height: 50px;
}

/* hero */
.hero {
    background: url('../img/hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    color: #1a709c;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 55px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin: 5px 0;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
}

.text-blue {
    color: #1a709c;
    font-weight: 600;
}

.qualify-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #c1c1c1;
}

.qualify-heading {
    /* font-size: 14px; */
    font-weight: 400;
    color: #7d7d7d;
    text-align: center;
    margin-bottom: 20px;
    /* letter-spacing: 2px; */
}

.qualify-checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
    margin-top: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.check-icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.check-item span {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.check-eligibility {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.eligibility-subtitle {
    color: #1a709c;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.question-box {
    margin-bottom: 30px;
}

.question-number {
    width: 30px;
    height: 30px;
    background: #3cbdbd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.question-label {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.state-select {
    padding: 14px 20px;
    font-size: 17px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: #333;
    font-weight: 500;
}

.state-select:focus {
    border-color: #1a709c;
    box-shadow: 0 0 0 0.2rem rgba(26, 112, 156, 0.15);
}

.btn-get-started {
    width: 100%;
    background: #273243;
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-get-started:hover {
    background: #1a2330;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 50, 67, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-text {
        font-size: 18px;
    }

    .qualify-checks {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 30px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .qualify-box {
        padding: 20px;
    }

    .qualify-checks {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .check-item {
        gap: 8px;
    }

    .check-icon {
        width: 18px;
    }

    .check-item span {
        font-size: 13px;
    }
    
    .check-eligibility {
        font-size: 28px;
    }

    .eligibility-subtitle {
        font-size: 16px;
    }

    .question-box {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .question-number {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .question-label {
        font-size: 18px;
    }

    .state-select {
        font-size: 15px;
        padding: 12px 15px;
    }

    .btn-get-started {
        font-size: 18px;
        padding: 15px 25px;
    }
}

/* badge */
.badge-wrapper {
    position: relative;
    text-align: center;
    padding: 20px 0;
}

.celebrating-badge {
    width: 180px;
    height: auto;
    display: inline-block;
}

@media (max-width: 991px) {
    .celebrating-badge {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .badge-wrapper {
        padding: 15px 0;
    }
    
    .celebrating-badge {
        width: 120px;
    }
}

/* stats section */
.stats-section {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #4a7ba7;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-text {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats responsive */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-text {
        font-size: 11px;
    }
}

/* reviews section */
.reviews-section {
    background: #f5f6f7;
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-subtitle {
    color: #4a7ba7;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.reviews-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    border: 1px solid #c1c1c1;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-stars {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #00b67a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-avatar-yellow {
    background: #f4d098;
    color: #333;
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
}

.author-emoji {
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.review-text:last-child {
    margin-bottom: 0;
}

.review-highlight {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d9e7f5;
    color: #4a7ba7;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-see-all:hover {
    background: #c5daf0;
    transform: translateY(-2px);
}

.see-all-icon {
    width: auto;
    height: 40px;
}

.trustpilot-logo {
    width: 150px;
    height: auto;
}

/* Reviews responsive */
@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .reviews-title {
        font-size: 28px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-stars {
        width: 100px;
    }
}

/* break free section */
.break-free-section {
    background: white;
}

.break-free-content {
    padding-left: 20px;
}

.break-free-subtitle {
    color: #4a7ba7;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.break-free-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.break-free-description {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.how-we-help-title {
    color: #4a7ba7;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.help-item:last-child {
    margin-bottom: 0;
}

.check-black-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Break Free responsive */
@media (max-width: 991px) {
    .break-free-content {
        padding-left: 0;
    }
    
    .break-free-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .break-free-content {
        padding-left: 0;
    }
    
    .break-free-subtitle {
        font-size: 14px;
    }
    
    .break-free-title {
        font-size: 26px;
        line-height: 1.1;
    }
    
    .break-free-description {
        font-size: 14px;
    }
    
    .how-we-help-title {
        font-size: 15px;
        letter-spacing: 1.5px;
    }
    
    .help-item {
        font-size: 14px;
    }
    
    .check-black-icon {
        width: 20px;
        height: 20px;
    }
    
    .break-free-section img.img-fluid {
        border-radius: 8px;
    }
}

/* section 2 - Question */
.step-2 {
    background: url("../img/faded-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.question-card {
    background: white;
    border-radius: 12px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #c1c1c1;
}

.question-progress {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.question-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.question-number-circle {
    width: 50px;
    height: 50px;
    background: #3cbdbd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.question-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: center;
}

.answer-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.answer-btn {
    width: 100%;
    padding: 25px 30px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.answer-btn strong {
    font-weight: 700;
}

.answer-btn-yes {
    background: #273243;
}

.answer-btn-yes:hover {
    background: #1a2330;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 50, 67, 0.3);
}

.answer-btn-no {
    background: #5c6e7a;
}

.answer-btn-no:hover {
    background: #4a5964;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 110, 122, 0.3);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #333;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-icon {
    width: 30px;
    height: 30px;
}

/* Section 2 responsive */
@media (max-width: 991px) {
    .question-card {
        padding: 40px 40px;
    }
    
    .question-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .question-card {
        padding: 30px 20px;
    }
    
    .question-progress {
        font-size: 16px;
    }
    
    .question-header {
        flex-direction: column;
        gap: 10px;
    }

    .question-title {
        font-size: 20px;
        text-align: center;
    }
    
    .answer-btn {
        padding: 20px 20px;
        font-size: 16px;
    }
}

/* section 3 - Question */
.step-3 {
    background: url('../img/faded-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* section 4 - Final Form */
.step-4 {
    background: url('../img/faded-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.final-step-badge {
    color: #4a7ba7;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
}

.info-form {
    padding: 0 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #d1d1d1;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: #3cbdbd;
    box-shadow: 0 0 0 3px rgba(60, 189, 189, 0.1);
}

.btn-submit {
    width: 100%;
    background: #3cbdbd;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-submit:hover {
    background: #2fa8a8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 189, 189, 0.3);
}

.disclaimer-text {
    font-size: 11px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin: 0;
}

/* Section 4 responsive */
@media (max-width: 991px) {
    .info-form {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .info-form {
        padding: 0 10px;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .disclaimer-text {
        font-size: 10px;
    }
}

/* thank you section */
.thank-you-section {
    background: url('../img/faded-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.thank-you-card {
    background: white;
    border-radius: 12px;
    padding: 80px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #c1c1c1;
}

.thank-you-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 48px;
    font-weight: 700;
    color: #3cbdbd;
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Thank you responsive */
@media (max-width: 991px) {
    .thank-you-card {
        padding: 60px 40px;
    }
    
    .thank-you-title {
        font-size: 46px;
    }
    
    .thank-you-message {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .thank-you-card {
        padding: 40px 30px;
    }
    
    .thank-you-title {
        font-size: 36px;
    }
    
    .thank-you-message {
        font-size: 16px;
    }
}

/* disclaimer */
.disclaimer {
    background: #f6f4ed;
}

.disc-txt {
    color: #808080;
    font-size: 14px;
}

.fs-14 {
    font-size: 14px;
}

.foo-link {
    color: #2a6fb7;
    text-decoration: none;
}

.phone-link {
    font-size: 18px;
    color: #2a6fb7;
    text-decoration: none;
}

.phone-link-mobile {
    color: #fff;
    text-decoration: none;
}

.phone-container-mobile {
    background: #273243;
    padding: 4px;
    border-radius: 12px;
    color: #fff;
    font-size: 11px;
}

span.error.alert-danger.visible {
    color: red;
    font-size: 13px;
}