/* ========================================
   HERO SECTION
   ======================================== */
.header-inner{
    padding: 0 !important;
}
.footer-inner{
    padding: 0 !important;
}
.hero-section {
    position: relative;
    min-height: auto;
    padding: 100px 20px 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1560px;
    margin: 0 auto;
    margin-top: 30px;
    gap: 40px;
}

.hero-content {
    max-width: 100%;
    padding-top: 0;
    text-align: center;
}

.hero-title {
    font-size: var(--font-hero-title);
    font-weight: 700;
    line-height: var(--lh-hero-title);
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: var(--font-hero-subtitle);
    font-weight: 400;
    color: var(--primary-blue);
    line-height: normal;
    margin-bottom: 24px; /* Changed from 32px */
    max-width: 100%;
}

.hero-description {
    font-size: var(--font-hero-description);
    font-weight: 400;
    color: var(--primary-dark);
    line-height: normal;
    max-width: 100%;
    margin: 0 auto 40px;
}

.description-box {
    margin: auto;
    background: var(--primary-dark);
    border-radius: 0px;
    padding: 10px;
    margin-bottom: 20px;
    max-width: 420px;
}

.description-box p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 1024px) {
    .description-box {
        margin: 0;
        padding: 10px;
        font-size: 23px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 32px; /* Changed from 45px */
        max-width: 469px;
    }
    
    .description-box p {
        font-size: 24px;
    }
}



.hero-description p {
    margin-bottom: 0;
}

.hero-description strong {
    font-weight: 700;
}

.hero-form-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(14, 7, 97, 0.15);
}

/* ========================================
   FORM STYLES
   ======================================== */
 #contact-form-anchor{
    position: absolute;
    top:-50px;
 }  

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 100%;
}

.form-group label {
    text-align: left;
    font-size: var(--font-form-label);
    font-weight: 500;
    color: #080d42;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 8px 20px;
    border: none;
    border-radius: 31px;
    font-size: var(--font-form-input);
    font-family: 'Inter Tight', sans-serif;
    color: var(--text-dark);
    border: 1px solid #DBDDDF;
    background: var(--white);
}



.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: #a1a1a1;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(14, 7, 97, 0.1);
}

.form-group-debt,
.form-group-state{
    flex: none !important;
}

.select-wrapper {
    position: relative;
}

.select-wrapper-states{
    max-width: 75px;
}

.select-wrapper-amount{
    max-width: 150px;
}

.select-wrapper select {
    width: 100%;
    padding: 8px 40px 8px 20px;
    border: 1px solid #dbdddf;
    border-radius: 31px;
    font-size: var(--font-form-select);
    font-family: 'Inter Tight', sans-serif;
    color: #a1a1a1;
    border: 1px solid #DBDDDF;
    background: #f7f7fa !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #a1a1a1;
    pointer-events: none;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-checkbox);
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 17px;
    height: 17px;
    border: 1.5px solid #d6dadf;
    border-radius: 6px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkmark svg {
    opacity: 0;
    height: 10px;
    width: 10px;
    transition: opacity 0.2s ease;
}

.form-group .checkbox-label{
    font-size: var(--font-body-xs);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--light-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark svg {
    opacity: 1;
}

.checkmark-round {
    width: 17px;
    height: 17px;
    border-radius: 6px;
    border: 1.5px solid #d1d5db;
    background: #f3f4f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark-round {
    border-color: var(--primary-blue);
    background: #ffffff;
}

.consent-label {
    font-size: var(--font-consent);
    text-align: left;
    color: #3E4042;
    align-items: flex-start;
}

.consent-label .checkmark-round {
    margin-top: 2px;
}

.form-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
    margin-top: 1px;
    margin-bottom: 4px;
}

.contact-btn-large {
    background: var(--primary-dark);
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 23px;
    font-size: var(--font-button-lg);
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
    margin-top: 8px;
    width: fit-content;
    margin: auto;
    margin-top: 10px;
}

.contact-btn-large:hover {
    background: var(--primary-blue);
}

.contact-btn-center {
    margin: 0 auto;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-section {
    padding: 60px 20px 20px;
    background: var(--bg-light);
    position: relative;
}

.intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1560px;
    margin: 0 auto;
    gap: 40px;
}

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

.section-title {
    font-size: var(--font-section-title);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 5px;
}

.intro-subtitle {
    font-size: var(--font-section-subtitle);
    font-weight: 400;
    color: var(--primary-blue);
    line-height: normal;
    margin-top: 15px;
    margin-bottom: 24px;
}

.intro-subtitle strong {
    font-weight: 700;
}

.intro-text {
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    line-height: normal;
    margin-bottom: 32px;
}

.intro-text strong {
    font-weight: 700;
}

.rights-box {
    background: var(--light-blue);
    padding: 24px 28px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.rights-title {
    font-size: var(--font-rights-title);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: normal;
    margin-bottom: 20px;
}

.rights-list {
    list-style: none;
    padding: 0;
}

.rights-list li {
    font-size: var(--font-rights-list);
    font-weight: 400;
    color: var(--primary-dark);
    padding-left: 20px;
    position: relative;
}

.rights-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
}

.rights-list li strong {
    font-weight: 700;
}

.intro-footer {
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    line-height: normal;
}

.intro-image {
    flex-shrink: 0;
    width: 100%;
}

.intro-image img {
    margin-top: -60px;
    width: 100%;
    max-width: 743px;
    height: auto;
    margin: auto;
    border-radius: 20px;
}

/* ========================================
   ISSUES SECTION
   ======================================== */
.issues-section {
    padding: 20px;
    background: var(--bg-light);
    text-align: center;
}

.issues-inner {
    max-width: 1560px;
    margin: 0 auto;
    background: var(--bg-gray);
    padding: 32px 24px;
    border-radius: 30px;
}

.issues-inner .contact-btn-large, .help-inner .contact-btn-large{
    margin: auto;
}

.section-title-center {
    text-align: center;
    font-size: var(--font-section-title-center);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: var(--lh-section-title-center);
    margin-bottom: 10px;
}

.section-subtitle-center {
    font-size: var(--font-section-subtitle);
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.issues-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.issues-grid.owl-carousel {
    display: block;
}

.issues-grid.owl-carousel .issue-item {
    max-width: 100%;
    margin: 0;
}

.issues-grid .owl-stage {
    display: flex;
    align-items: stretch;
}

.issues-grid .owl-item {
    display: flex;
}

.issues-grid .owl-item .issue-item {
    height: 100%;
    width: 100%;
}

.issue-item {
    display: flex;
    flex-direction: column;
    background: linear-gradient(316deg, var(--bg-gray) 8.33%, var(--bg-light) 99.63%);
    border-radius: 20px;
    padding: 24px 16px 20px;
    text-align: center;
    max-width: 100%;
    width: 100%;
   
}

.issue-icon-wrapper {
    flex: 0;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.issue-icon-wrapper img {
    max-width: 56px;
    max-height: 56px;
}

.issue-item h3 {
    font-size: var(--font-issue-title);
    font-weight: 500;
    color: #0e075f;
    line-height: var(--lh-issue-title);
    margin-bottom: 2px;
    max-width: 100%;
}

.issue-description {
    font-size: var(--font-issue-description);
    font-weight: 400;
    color: var(--text-dark);
    line-height: var(--lh-issue-description);
    margin-right: 5px;
}

.issues-footer {
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.issues-footer strong {
    font-weight: 700;
}

/* ========================================
   HELP SECTION
   ======================================== */
.help-section {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.help-inner {
    max-width: 1560px;
    margin: 0 auto;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
    align-items: center;
}

.help-steps.owl-carousel {
    display: block;
    flex-direction: row;
}

.help-steps.owl-carousel .help-step {
    flex: none;
    text-align: left;
}

.help-steps .owl-stage {
    display: flex;
    align-items: stretch;
}

.help-steps .owl-item {
    display: flex;
}

.help-steps .owl-item .help-step {
    height: 100%;
    width: 100%;
    text-align: center;
}

.help-steps.owl-carousel .help-step h3 {
    font-size: var(--font-body-lg);
    line-height: 22px;
}

.help-steps.owl-carousel .help-step p {
    font-size: var(--font-body-sm);
    margin: 0;
}

.help-steps.owl-carousel .help-step-img {
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
}

.help-steps.owl-carousel .help-step-img img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.help-step {
    flex: 1;
    text-align: center;
    width: 100%;
}

.help-step-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
}

.help-step-img img {
    display: flex;
    width: 100%;
    flex: 0;
    height: 100%;
    object-fit: cover;
}

.help-step h3 {
    font-size: var(--font-help-step-title);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: normal;
    margin-bottom: 8px;
}

.help-step p {
    font-size: var(--font-help-step-text);
    font-weight: 400;
    color: var(--text-dark);
    line-height: normal;
}

.help-step p strong {
    font-weight: 700;
}

.help-footer {
    font-size: var(--font-help-footer);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.help-footer strong {
    font-weight: 700;
}

/* ========================================
   RIGHTS SECTION
   ======================================== */
.rights-section {
    position: relative;
    padding: 40px 20px 0;
    overflow: visible;
}

.rights-bg-wrapper {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    display: flex;
    align-items: center;
    min-height: 500px;
    overflow: hidden;
    max-width: 1560px;
    border-radius: 30px 30px 0 0;
    margin: auto;
}

.rights-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: max-content;
    object-fit: cover;
}

.rights-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    height: 100%;
    align-items: center;
    padding: 40px 20px;
    margin-top: -44px;
}

.section-title-white {
    font-size: var(--font-section-title-white);
    font-weight: 600;
    color: var(--bg-light);
    line-height: var(--lh-section-title-white);
    margin-bottom: 20px;
}

.rights-description {
    font-size: var(--font-rights-description);
    font-weight: 400;
    color: #88b2f2;
    margin-bottom: 20px;
}

.rights-text {
    font-size: var(--font-rights-text);
    font-weight: 400;
    color: var(--bg-light);
    line-height: normal;
    margin-bottom: 24px;
}

.rights-text strong {
    font-weight: 700;
}

.rights-cta {
    font-size: var(--font-rights-cta);
    font-weight: 600;
    color: var(--bg-light);
    line-height: 1.2;
}

.highlight-italic {
    color: #3b82f3;
    font-style: italic;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-inner {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 30px 30px;
    background: var(--light-blue);
    padding: 40px 20px 60px;
    margin-top: -60px;
}

.trust-icon {
    margin: auto;
    display: flex;
    border-radius: 40px;
    position: relative;
    max-width: 160px;
    margin-bottom: 0px;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin-top: 40px;
    align-items: center;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 227px;
}

.trust-item img {
    width: auto;
    height: 80px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: var(--font-trust-title);
    font-weight: 500;
    color: var(--primary-dark);
    line-height: normal;
}

/* ========================================
   URGENCY SECTION
   ======================================== */
.urgency-section {
    position: relative;
    padding: 0 20px 20px;
    text-align: center;
    margin-top: 60px;
}

.urgency-bg {
    position: relative;
    height: auto;
    z-index: 0;
    width: 100%;
    object-fit: contain;
    min-height: 240px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 30px;
    max-width: 1560px;
}

.urgency-inner {
    position: relative;
    z-index: 1;
    max-width: 1560px;
    margin: 0 auto;
}

.urgency-title {
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.urgency-text {
    font-size: var(--font-urgency-text);
    font-weight: 400;
    color: var(--text-dark);
    line-height: normal;
    max-width: 100%;
    margin: 0 auto;
}

.urgency-text-primary{
    font-size: 18px;
    margin-bottom: 30px;
}

.urgency-text strong {
    font-weight: 700;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: 40px 20px 60px;
    background: var(--bg-light);
}

.final-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1560px;
    margin: 0 auto;
    gap: 40px;
    text-align: center;
}

.final-cta-content {
    flex: 1;
}

.final-cta-title {
    font-size: var(--font-final-cta-title);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: var(--lh-final-cta-title);
}

.highlight-blue {
    color: var(--accent-blue);
    font-style: italic;
}

.final-form-container {
    width: 100%;
    max-width: 556px;
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(14, 7, 97, 0.15);
}

.contact-email svg{
    margin-top: 5px;
}

.checkbox-label input[type="radio"] {
    display: none;
}

.checkbox-label input[type="radio"]:checked + .checkmark {
    background: var(--light-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="radio"]:checked + .checkmark svg {
    opacity: 1;
}

/* Owl Carousel Dots Styling */
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d6dadf !important;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--primary-dark) !important;
    transform: scale(1.1);
}

.owl-dot:hover {
    background: var(--primary-blue) !important;
}

/* ========================================
   TABLET BREAKPOINT (1024px and up)
   ======================================== */
@media (min-width: 1024px) {

 
    .hero-section {
        padding: 120px 80px 60px;
        min-height: 110vh;
    }

    .hero-bg {
        opacity: 1;
        height: 110vh;
    }

    .hero-inner {
        display: grid;
        align-items: flex-start;
        grid-template-columns: 1fr 0.7fr;
        gap: 50px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        
        margin-bottom: 14px;
    }

    .hero-subtitle {
        margin-bottom: 30px;
        max-width: 469px;
    }

    .hero-description {
        max-width: 398px;
        margin: 0;
    }

    .hero-form-container {
        margin-left: auto;
        padding: 36px 40px;
    }

    .contact-btn-large{
        margin-left: 0;
    }

    .form-row {
        flex-direction: row;
        align-items: flex-end;
    }

    .form-group {
        width: auto;
    }

    .intro-section {
        padding: 60px 80px 20px;
    }

    .intro-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .intro-content {
        max-width: 504px;
    }

    .rights-box {
        padding: 28px 40px;
        border-radius: 32px;
    }

    .rights-bg-img{
        border-radius: 0 0 40px 40px;
    }

    .issues-section {
        padding: 20px 50px;
    }

    .issues-inner {
        padding: 36px 50px;
        border-radius: 40px;
    }

    .section-subtitle-center {
        margin-bottom: 50px;
    }

    .issue-item {
        text-align: left;
        max-width: 195px;
        padding: 28px 18px 22px;
    }

    .issue-icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .help-section {
        padding: 80px;
    }

    .help-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        margin: 50px 0;
    }

    .help-step {
        flex: 0 0 calc(33.333% - 20px);
    }

    .help-step-img {
        height: 320px;
        border-radius: 18px;
    }

    .help-steps.owl-carousel .help-step h3 {
        font-size: var(--font-help-step-title);
        line-height: 24px;
    }

    .help-steps.owl-carousel .help-step p {
        font-size: var(--font-rights-list);
    }

    .help-steps.owl-carousel .help-step-img {
        height: 320px;
    }

    .intro-image img{
        margin: 0;
    }

    .rights-section {
        padding: 60px 80px 0;
    }

    .rights-bg-wrapper {
        height: 530px;
    }

    .rights-inner {
        max-width: 1000px;
        padding: 50px 40px;
    }

    .trust-inner {
        padding: 55px 50px 100px;
        margin-top: -100px;
        border-radius: 0 0 40px 40px;
    }

    .trust-icon {
        max-width: 200px;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px 50px;
        justify-content: center;
    }

    .trust-item img {
        height: 90px;
    }

    .urgency-section {
        padding: 0 80px 20px;
        margin-top: 80px;
    }

    .urgency-bg {
        object-fit: cover;
        min-height: 320px;
        margin-top: 0px;
    }

    .urgency-title {
        margin-bottom: 32px;
    }

    .help-steps .owl-item .help-step {
        text-align: left;
    }

    .final-cta-section {
        padding: 20px 80px 80px;
    }

    .final-cta-inner {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }

    .final-form-container {
        width: 520px;
        padding: 36px 40px;
    }

    .urgency-text-secondary span{
        font-size: 23px !important;
    }

 
}

/* ========================================
   DESKTOP BREAKPOINT (1200px and up)
   ======================================== */
@media (min-width: 1200px) {
    .logo img {
        height: 54px;
    }

    .hero-section {
        padding: 148px 50px 80px;
        min-height: 115vh;
    }

    .hero-bg {
        height: 115vh;
    }

    .hero-inner {
        gap: 60px;
    }

    .hero-form-container {
        max-width: 580px;
        padding: 40px 45px;
    }

    .intro-section {
        padding: 60px 50px 20px;
    }

    .intro-inner {
        gap: 60px;
    }

    .intro-subtitle {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .rights-box {
        padding: 30px 45px;
        border-radius: 36px;
    }

    .rights-title {
        margin-bottom: 25px;
    }

    .issues-section {
        padding: 20px 50px 20px 50px;
    }

    .issues-inner {
        padding: 40px 60px;
        border-radius: 45px;
    }

    .section-subtitle-center {
        margin-bottom: 60px;
    }

    .issue-item {
        padding: 30px 20px 25px;
    }

    .issue-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .issue-icon-wrapper img {
        max-width: 64px;
        max-height: 64px;
    }

    .issues-footer {
        margin-bottom: 40px;
    }

    .help-section {
        padding: 100px 50px 0px;
    }

    .help-steps {
        gap: 30px;
        margin: 60px 0;
    }

    .help-step-img {
        height: 350px;
        border-radius: 20px;
    }

    .help-steps.owl-carousel .help-step h3 {
        font-size: 22px;
        line-height: 26px;
    }

    .help-steps.owl-carousel .help-step p {
        font-size: var(--font-body);
    }

    .help-steps.owl-carousel .help-step-img {
        height: 370px;
        border-radius: 20px;
    }

    .help-steps.owl-carousel .help-step-img{
        height: 355px;
    }

    .help-steps.owl-carousel .help-step-img img{
        height: 365px;
    }
    .review-image{
        margin-top: 15px;
    }

    .challenges-image{
        margin-top: 22px;
    }

    .negotiates-image, .protect-image{
            margin-top: 21px;
    }

    .rights-section {
        padding: 80px 50px 0;
    }

    .rights-bg-wrapper {
        height: 570px;
    }

    .rights-inner {
        max-width: 1110px;
        margin-top: -42px;
    }

    .section-title-white {
        margin-bottom: 30px;
    }

    .rights-description {
        margin-bottom: 30px;
    }

    .rights-text {
        margin-bottom: 30px;
    }

    .trust-inner {
        padding: 65px 60px 125px;
        margin-top: -125px;
        border-radius: 0 0 45px 45px;
        max-width: 1560px;
    }

    .trust-icon {
        max-width: 235px;
    }

    .trust-grid {
        gap: 15px 63px;
        margin-top: 60px;
    }

    .trust-item img {
        height: 100px;
        margin-bottom: 25px;
    }

    .urgency-section {
        padding: 0 50px 20px;
        margin-top: 100px;
    }

    .urgency-bg {
        margin-top: 0px;
    }

    .urgency-title {
        margin-bottom: 32px;
    }

    .final-cta-section {
        padding: 20px 50px 100px;
    }

    .final-cta-inner {
        gap: 60px;
    }

    .final-form-container {
        width: 556px;
        padding: 40px 45px;
    }

}

@media(max-width:576px){
     .review-image{
        margin-top: 15px;
    }

    .challenges-image{
        margin-top: 22px;
    }

    .negotiates-image, .protect-image{
            margin-top: 21px;
    }
}


/* ============================================
   FINANCIAL AREAS - Mobile Base (Bootstrap Grid)
============================================ */
.financial-areas {
  background: var(--bg-gray);
  padding: 40px 0;
}

.financial-areas .section-title {
  margin-bottom: 30px;
}

.financial-card {
  text-align: center;
  max-width: 218px;
  width: 100%;
}

.financial-icon {
  margin: 0 auto 15px;
}

.financial-icon img {
  width: 100%;
  height: 150px;
  margin-bottom: 0px;
  object-fit: contain;
}

.financial-card h3 {
  font-size: var(--font-card-title);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: auto;
}

.financial-card p {
  font-size: 11px;
  max-width: 178px;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-blue);
  text-decoration: none;
  font-size: var(--font-link);
  font-weight: 600;
}

.learn-more img {
  width: 20px;
  height: 7px;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Also need the section-title styles */
.section-title {
  font-size: var(--font-section-title);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: var(--lh-section-title);
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
}

.urgency-text span, .urgency-title span{
    color:#3B82F3 !important;
}

/* ============================================
   TABLET ENHANCEMENT (1024px+)
============================================ */
@media (min-width: 1024px) {
  .financial-areas {
    padding: 60px 0;
  }
  
  .financial-card {
    text-align: left;
  }
  
  .financial-icon {
    margin: auto;
  }
  
  .financial-card h3 {
    font-size: var(--font-section-subtitle);
  }
  
  .learn-more {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
  }
}

/* ============================================
   DESKTOP ENHANCEMENT (1200px+)
============================================ */
@media (min-width: 1200px) {
  .financial-areas {
    padding: 80px 0;
  }
  
  .financial-card h3 {
    font-size: 22px;
  }

  .section-title {
    font-size: var(--font-section-title);
    line-height: 1.3;
    margin-bottom: 30px;
  }
}

/* ============================================
   LARGE DESKTOP (1400px+)
============================================ */
@media (min-width: 1400px) {
  .financial-areas {
    padding: 80px 0;
  }
}

/* ============================================
   MOBILE (<1024px)
============================================ */
@media (max-width: 1024px) {
  .financial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 218px;
    width: 100%;
  }
}


/* ========================================
   FIGHT BACK SECTION STYLES
   ======================================== */

.financial-areas {
    background-color: #EAEFF5; /* Matches the light grey/blue background */
    padding: 80px 20px;
    text-align: center;
}

.container-figma {
    max-width: 1400px; /* Wide container to fit 4 columns */
    margin: 0 auto;
}

/* Typography */
.section-title.center {
    color: #0E075F; /* Dark Deep Blue */
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-text-wrapper {
    margin-bottom: 50px;
}

.finatial-text-main {
    font-size: 22px;
    color: #0D00A9; /* Almost black for the description */
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
}

.finatial-text-main strong {
    font-weight: 700;
}

.finatial-text-sub {
    font-size: 22px;
    color: #2B59C3; /* The lighter blue color */
    font-weight: 500;
}

/* Grid Layout */
.fight-back-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.fight-card {
    flex: 1;
    min-width: 150px;
    max-width: 214px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

/* Icons */
.fight-card .financial-icon {
    height: 100px; /* Fixed height container */
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end; /* Aligns icon to bottom of container */
    justify-content: center;
}

.fight-card .financial-icon img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    /* Note: You might need to add a drop-shadow filter here if the SVGs don't have shadows */
    /* filter: drop-shadow(0px 10px 15px rgba(59, 130, 243, 0.3)); */
}

/* Numbered Text styling */
.fight-card h3 {
    display: flex;
    align-items: flex-start;
    gap: 8px; /* Space between "1." and Text */
    font-family: 'Inter Tight', sans-serif;
    color: #0E075F;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

.fight-card h3 .num {
    flex-shrink: 0; /* Ensures the number doesn't squish */
}

/* Footer Text */
.text-financial-area {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.5;
}

/* Button Override/Refinement */
.contact-btn-large {
    background-color: #0E075F;
    color: white;
    padding: 15px 32px;
    border-radius: 50px; /* Pill shape */
    font-size: 16px;
    font-weight: 500;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.contact-btn-large:hover {
    background-color: #2B59C3;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .fight-back-grid {
        gap: 40px;
    }
    
    .fight-card {
        flex: 0 0 45%; /* 2 columns on tablet */
        max-width: 45%;
        align-items: flex-start; /* Left align icon on smaller screens if desired, or keep center */
    }
    
    .section-title.center {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .fight-card {
        flex: 0 0 100%; /* 1 column on mobile */
        max-width: 400px;
        align-items: center;
        text-align: center;
    }

    /* On mobile, center the text block instead of the "1." hanging layout */
    .fight-card h3 {
        justify-content: center;
        text-align: center;
    }
    
    .section-title.center {
        font-size: 32px;
    }
    
    .finatial-text-main {
        font-size: 18px;
        padding: 0 15px;
    }
}

/* ========================================
   COMMON TYPES SECTION (Timeline)
   ======================================== */

.common-types-section {
    position: relative;
    padding: 80px 20px;
    background-color: #F8F9FB; /* Light background from image */
    text-align: center;
    overflow: hidden; /* Prevents horizontal scroll on small screens */
}

@media(min-width:1539px){
    .common-types-section .container-figma{
    position: relative;
    max-width: 1540px;
}
}

/* Header Tweaks */
.common-types-section .section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0E075F;
}

.common-types-section .intro-subtitle {
    color: #0D00A9;
    font-size: 22px;
    margin-bottom: 60px;
}

/* Wrapper for the diagram */
.types-timeline-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

/* The Background Line (Stroke) */
.timeline-stroke {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-stroke img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Grid Layout for Items */
.types-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 Equal Columns */
    gap: 10px;
    align-items: center;
}

/* Individual Item Styling */
.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left; /* Text aligns left per design (mostly) */
    padding: 0 5px;
}

.type-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    /* Optional: Add a white glow behind icons to separate from line if needed */
    /* background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 70%); */
}

.type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 10px 20px rgba(13, 0, 169, 0.15));
}

.type-text {
    font-size: 15px;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 180px;
}

.type-text strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* --- High/Low Logic for the Wave --- */

/* High Items (2, 4, 6): Text Above, Icon Below */
.item-high {
    flex-direction: column; /* Text top, Icon bottom */
    justify-content: flex-end;
    padding-bottom: 40px; /* Push it up */
    transform: translateY(-20px); /* Adjust vertical alignment to hit wave */
}
.item-high .type-icon {
    order: 2; /* Force icon to bottom */
    margin-bottom: 0;
    margin-top: 15px;
}
.item-high .type-text {
    order: 1; /* Force text to top */
}

/* Low Items (1, 3, 5): Icon Above, Text Below */
.item-low {
    flex-direction: column; 
    justify-content: flex-start;
    padding-top: 40px; /* Push it down */
    transform: translateY(20px); /* Adjust vertical alignment to hit wave */
}

/* Footer Styling */
.common-types-footer {
    font-size: 14px;
    color: #4A4A4A;
    margin-top: 40px;
}

.types-timeline-wrapper .type-text{
        max-width: 150px;
}

/* ========================================
   TIMELINE STROKE ADJUSTMENT (1200px - 1500px)
   ======================================== */
@media (min-width: 1200px) and (max-width: 1499px) {
    .timeline-stroke img {
        width: 1900px !important;
        height: 140px !important;
    }

    .type-item{
            max-width: 185px !important;
    }
}




/* ========================================
   RESPONSIVE (Mobile/Tablet)
   ======================================== */

@media (max-width: 1200px) {
    .types-grid {
        grid-template-columns: repeat(3, 1fr); /* 3x2 Grid */
        gap: 40px 20px;
    }
    
    .timeline-stroke {
        display: none; /* Hide wave on tablet/mobile as it won't fit vertically */
    }

    /* Reset High/Low positions for grid layout */
    .item-high, .item-low {
        transform: none;
        padding: 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .item-high .type-icon {
        order: 0; /* Reset order: Icon first */
        margin-top: 0;
        margin-bottom: 15px;
    }

    .type-text {
        font-size: 13px;
        line-height: 1.2;
        color: #1a1a1a;
        max-width: 180px;
        text-align: center;
        margin: auto;
    }
   
}

@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x3 Grid */
        align-items: self-start;
    }
    
    .common-types-section .section-title {
        font-size: 32px;
    }

    .common-types-section .intro-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
    }
    
    .type-item {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .type-text {
        text-align: left;
        margin: 0;
    }
    
    .type-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media(min-width:1200px){
     .item-high .type-icon{
        margin-top: 0;
    }

    .item-low{
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 85px;
        transform: translateY(20px);
    }

    .type-text{
        font-size: 12px;
        margin-bottom: 9px;
    }

    .common-types-section .intro-subtitle{
        font-size: 24px;
    }

    .timeline-stroke{
        transform: translateY(-0%);
    }
    .type-icon img{
        max-width: 75px;
        max-height: 75px;
    }
    .item-1 p{
        max-width: 136px;
        text-wrap-style: balance;
    }

    .item-4 img{
        margin-left: -7px;
    }

    .item-5 img{
        margin-left: -28px;
    }

    .item-6 img{
        margin-left: -30px;
    }
}


@media(min-width:1499px){
      .item-4 img{
        margin-left: -5px;
    }

    .item-2 img{
        margin-left: -5px;
    }

    .item-3 img{
        margin-left: -10px;
    }

}