/* ========================================
   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: 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;
}

.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: var(--lh-section-title);
    margin-bottom: 5px;
}

.intro-subtitle {
    font-size: var(--font-section-subtitle);
    font-weight: 400;
    color: var(--primary-blue);
    line-height: normal;
    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 {
    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: -40px;
    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 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;
        grid-template-columns: 1fr 0.7fr;
        gap: 50px;
    }

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

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

    .hero-subtitle {
        margin-bottom: 45px;
        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: -60px;
    }

    .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;
    }

 
}

/* ========================================
   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-title {
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin-bottom: 55px;
    }

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

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

    .intro-inner {
        gap: 60px;
    }

    .intro-subtitle {
        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: -80px;
    }

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

    .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;
    }
}