l/* ========================================
   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: #88B2F2;
    border-radius: 0px;
    padding: 10px;
    margin-bottom: 20px;
    max-width: 420px;
}

.description-box p {
    font-size: 18px;
    font-weight: 500;
    color: #0E0761;
    line-height: 1.2;
    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;
    color: #0E0761 !important;
}

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

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

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

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

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

.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: #E7EEF1;
    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 {
    text-align: center;
    margin-top: 15px;
    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(321deg, #CBE4FA 7.96%, #F3F5F6 100.06%);
    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: 400;
    color: #0e075f;
    line-height: var(--lh-issue-title);
    margin-bottom: 2px;
    max-width: 100%;
    text-wrap-style: pretty;
}

.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;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

/* ========================================
   RIGHTS SECTION
   ======================================== */
.rights-section {
    position: relative;
    padding: 0px 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: 600;
}

.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: 30px;
    background: transparent;
    padding: 20px 20px 0px;
    margin-top: 0px;
}

.trust-inner .contact-btn-large{
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.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: 600;
    color: var(--primary-dark);
    line-height: normal;
}

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

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

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

.highlight-blue-text {
    color:#0083F7;
    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;
    }

    .privacy-grid{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

  
    .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: 0px 80px 0;
    }

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

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

    .trust-inner {
        padding: 55px 50px 0px;
        margin-top: 0px;
        border-radius: 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: 0px;
    }

    .urgency-bg {
        object-fit: contain;
        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: 44px !important;
    }

    .urgency-section .urgency-title{
        margin-bottom: 0px;
    }

 
}

/* ========================================
   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: 0px 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 0px;
        margin-top: 0px;
        border-radius: 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: 0px;
    }

    .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: #fff;
  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;
}



/* ============================================
   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 {
    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.2;
    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: #f4f5f6; /* Matches the light grey/blue background */
    padding: 40px 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-weight: 600;
    margin-bottom: 20px;
}

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

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

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

.finatial-text-sub {
    font-size: var(--font-section-subtitle);
    color: #0D00A9; /* The lighter blue color */
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

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

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

@media(min-width:1024px){
 .fight-card p{
        margin-left: 22px;
 }

 .fight-card{
    align-items: flex-start;
 }
}

/* Icons */
.fight-card .financial-icon {
    height: 100px;
    margin-bottom: 1px;
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    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: 16px;
    line-height: 1.2;
    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.1;
}

/* 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: #0D00A9;
}

/* ========================================
   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 */
        max-width: 240px;
    }
    
   
}

@media (max-width: 768px) {
    .fight-card {
        flex: 0 0 100%; /* 1 column on mobile */
        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;
    }
    
  
    
    .finatial-text-main {
        font-size: 18px;
        padding: 0 15px;
    }
}

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

.common-types-section {
    position: relative;
    padding: 80px 20px;
    background-color: #f4f5f6; /* 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 {
    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: 600;
    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 .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;
    }

}

/* ========================================
   HERO SECTION
   ======================================== */
.header-inner, .footer-inner {
    padding: 0 !important;
}

.hero-section {
    position: relative;
    /* Light Blue Gradient Background matching design */
    background: linear-gradient(105deg, #dae7f7 0%, #eef6fc 50%, #dbeafe 100%);
    overflow: hidden; /* Keeps the man's image from overflowing */
}

/* Background graphics/overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
}

/* --- Left Column: Text --- */
.hero-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    /* Large, Bold Dark Blue Title */
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark); /* Dark Navy */
    margin-bottom: 20px;
}

.hero-subtitle {
    /* Medium Blue Subtitle */
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    color: #0D00A9; /* Bright Royal Blue */
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-dark);
    line-height: 1.1;
    max-width: 100%;
    margin: 0 auto;
}

.hero-description .highlight-bold {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

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

/* --- Center: Image Wrapper --- */
.hero-image-wrapper {
    display: none; /* Hidden on mobile by default to save space, or can be shown above form */
}

/* --- Right Column: Form --- */
.hero-form-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    /* Soft shadow to make it pop */
    box-shadow: 0 20px 40px rgba(14, 7, 97, 0.1);
    z-index: 3;
}

/* ========================================
   DESKTOP / TABLET BREAKPOINT (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .hero-section {
        padding: 100px 60px 80px;
        /* Ensure height fits the image */
        display: flex;
        align-items: center;
    }

    .hero-inner {
        margin-top: -40px;
        display: grid;
        /* Layout: Text (Left) - Form (Right) */
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    /* Content Styling for Desktop */
    .hero-content {
        text-align: left;
        max-width: 720px;
        padding-top: 0;
        margin-top: -130px;

    }

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

    .hero-subtitle {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 400px; /* Limit width for readability */
        margin: 0; /* Remove auto margin */
    }

    /* Positioning the Man Image */
    .hero-image-wrapper {
        display: block;
        position: absolute;
        bottom: -80px; /* Adjust based on image height */
        left: 50%;
        transform: translateX(-50%);
        z-index: 1; /* Behind the form and text, but above background */
        height: 90%; /* Scale relative to container */
        pointer-events: none;
    }

    .hero-man-img {
        height: 100%;
        width: auto;
        object-fit: contain;
        max-height: 850px;
    }

    /* Push form to the right */
    .hero-form-container {
        margin-left: auto; /* Pushes form to the right edge of grid */
        max-width: 480px;
        padding: 40px;
    }
}

/* ========================================
   LARGE DESKTOP (1400px+)
   ======================================== */
@media (min-width: 1400px) {
   
    
    .hero-image-wrapper {
        left: 45%; /* Shift image slightly left to separate from form */
    }
}

/* ========================================
   URGENCY SECTION UPDATES
   ======================================== */

.urgency-title {
    /* Primary Color from request */
    color: #0E0761; 
    font-weight: 600;
    margin-bottom: 24px;
}

.urgency-text-primary {
    font-size: 16px;
    line-height: 1.2;
    max-width: 926px;
    margin: 0 auto;
    color: #1a1a1a;
}

 .urgency-text-footer{
    color:#0D00A9;
 }

.urgency-text-primary strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Bottom "Justice" Text Styling */
.highlight-justice {
    /* Secondary Color from request */
    color: #0D00A9;
    font-size: 32px; /* Larger font for emphasis */
    font-weight: 600;
    font-style: italic; /* Matches design style */
    display: block;
    margin-top: 10px;
    font-family: 'Inter Tight', sans-serif;
}

/* Responsive adjustment for the large text */
@media (max-width: 768px) {
    .highlight-justice {
        font-size: 24px;
    }
}

/* ========================================
   PRIVACY SECTION STYLES
   ======================================== */

/* Spacing helper */
.intro-text.mb-medium {
    margin-bottom: 25px;
}

/* The Blue Box Container */
.privacy-box {
    background-color: #CBE4FA; /* Matches the light blue in screenshot */
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.privacy-box-title {
    color: #0E0761; /* Dark Navy */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
}

/* The Grid inside the box */
.privacy-grid {
    display: flex;
    gap: 11px;
}

.privacy-column {
    flex: 1;
    min-width: 240px; /* Ensures columns wrap on mobile */
}

/* List Styling */
.privacy-list {
    padding-left: 15px;
    margin: 0;
    list-style: none;
}

.privacy-list li {
    font-size: 15px;
    color: #0E0761;
    line-height: 1.2;
    position: relative;
    margin-bottom: 0px;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

/* Custom Bullet Point (Blue Dot) */
.privacy-list li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 8px; /* Adjust vertical alignment */
    width: 6px;
    height: 6px;
    background-color: #0E0761;
    border-radius: 50%;
}

.privacy-list li strong {
    font-weight: 600;
    color: #0E0761;
}

/* Intro Image Adjustment */
/* This ensures the image aligns well if you haven't set it already */
.intro-image img {
    border-radius: 30px; /* Matches the rounded look in the design */
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile Responsive Adjustment */
@media (max-width: 768px) {
    .privacy-grid {
        flex-direction: column;
        gap: 0px;
    }
    
    .privacy-column {
        min-width: 100%;
    }
}

/* Update the existing H3 style to be tighter */
.issue-item h3 {
    font-size: 16px; /* Adjusted size */
    font-weight: 600;
    color: #0E0761;
    margin-bottom: 5px; /* Reduced margin to sit close to description */
    line-height: 1.2;
}

/* Style for the new description text */
.issue-desc {
    font-size: 12px;
    font-weight: 400;
    color: #4A4A4A;
    margin: 0;
    margin-top: 3px;
    line-height: 1.1;
    max-width: 90%;
}

/* Title inside the blue box */
.privacy-box-title {
    font-size: 20px;
    font-weight: 600;
    color: #0E0761; /* Dark Navy Blue */
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Adjusting the list items to be cleaner (no strong tags needed per this design) */
.privacy-list li {
    font-size: 16px;
    color: #0E0761;
    line-height: 1.2;
    position: relative;
    margin-bottom: 5px;
    font-weight: 400; /* Makes the list items semi-bold like the design */
}

/* Footer text specific styling */
.footer-text {
    margin-top: 30px;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Ensure the blue box has the correct background */
.privacy-box {
    background-color: #D6EAFE; /* Light Blue background from design */
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 0; /* Removing bottom margin since footer text is separate now */
}

/* Mobile responsive tweak for the box title */
@media (max-width: 768px) {
    .privacy-box-title {
        font-size: 18px;
    }
}



/* ========================================
   REAL HELP SECTION (Light Glass Design)
   ======================================== */

.real-help-section {
    padding: 0px 20px;
    background: #f4f5f6; 
    display: flex;
    justify-content: center;
}

.real-help-container {
    position: relative;
    width: 100%;
    max-width: 1580px;
    aspect-ratio: 15 / 9;
    min-height: 400px !important;
    border-radius: 40px;
    max-height: 456px;
    overflow: hidden;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

/* --- Content Box (LIGHT Glass Effect) --- */
.real-help-content {
    position: absolute;
    bottom: 6%;
    left: 8%;
    width: 90%;
    max-width: 694px;
    
    /* Light Frost Gradient */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.65) 100%);
    
    /* Blur Effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Rounded Corners & Border */
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    
    /* Soft Shadow */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    
    padding: 50px 50px;
    z-index: 3;
}

/* --- Typography (Dark Colors for Light Background) --- */
.real-help-title {
    font-size: 32px; 
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #0E0761; /* Navy Blue */
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: -0.5px;
}

.real-help-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 1;
    color: #0E0761; /* Soft Black/Dark Grey */
}

.real-help-text strong {
    font-weight: 600;
    color: #0E0761; /* Navy Blue */
}

.real-help-footer {
    font-size: 19px; 
    font-weight: 600;
    line-height: 1.2;
    margin-top: 30px;
    color: #0E0761; /* Navy Blue */
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Desktop Standard */
@media (min-width: 1024px) {
   
    
    .real-help-container {
        min-height: auto; 
    }
    
    .real-help-content {
        left: auto !important;
        right: 4% !important;
        padding: 12px 27px;
        bottom: 6%;
        max-width: 476px;
    }

    .real-help-title {
        font-size: 28px; /* Matches image scale */
    }

    .real-help-text {
        font-size: 12px;
    }
    
    .real-help-footer {
        font-size: 19px;
    }
}



/* Laptop / Small Desktop (1024px - 1280px) */
@media (min-width: 1024px) and (max-width: 1280px) {
    .real-help-content {
        left: auto !important;
        right: 4% !important;
        bottom: 7%;
        max-width: 476px;
    }

    .real-help-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .real-help-text {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .real-help-footer {
        font-size: 19px;
        margin-top: 20px;
    }
}

/* Tablet & Mobile (< 1024px) */
@media (max-width: 1024px) {
    .real-help-container {
        border-radius: 20px;
        position: relative;
        width: 100%;
        max-width: 1440px;
        min-height: 476px !important;
        background-position: 5%; /* Adjust image focus */
        overflow: hidden;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .real-help-content {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
        width: 90%;
        max-width: 476px;
        padding: 40px 30px;
        
        /* Ensure Light Glass persists on mobile */
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.65) 100%);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    .real-help-title {
        font-size: 28px;
    }
}

/* Mobile Small (< 768px) */
@media (max-width: 768px) {
    .real-help-container {
        min-height: 700px;
        background-position: 70% center; /* Shift bg to keep person visible */
        border-radius: 30px;
    }
    
    .real-help-title {
        font-size: 28px;
    }
}

/* Very Small Mobile (< 350px) */
@media (max-width: 350px) {
    .real-help-title {
        font-size: 24px;
    }
    .real-help-content{
        bottom: 15px;
        padding: 30px 20px;
    }
    .real-help-text {
        font-size: 13px;
    }
    .real-help-footer{
        font-size: 15px;
    }
}

/* ========================================
   VIOLATIONS SECTION
   ======================================== */
.violations-section {
    padding: 60px 20px;
    background: #f4f5f6;
}

.violations-section .contact-btn-large{
    display: flex;
    margin: 0 auto;
    margin-top: 20px;
}

.violations-container {
    max-width: 1560px;
    margin: 0 auto;
    /* Light blue/gray background for the container box */
    background: #E7EEF1; 
    border-radius: 40px;
    padding: 60px 20px;
}

.violations-grid {
    display: grid;
    /* Default Mobile: 1 Column */
    grid-template-columns: 1fr; 
    gap: 20px;
    margin-top: 40px;
}

/* --- Card Styling --- */
.violation-card {
    background: linear-gradient(107deg, #F3F5F6 4.71%, #E7EEF1 95.29%);
    border-radius: 24px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%; /* Ensure equal heights */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Subtle shadow */
}

/* Icon Circle */
.violation-icon {
    width: 60px;
    height: 60px;
    background-color: #0056D2; /* Bright Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.violation-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Forces icon to be white if it isn't already */
}

/* Card Text */
.violation-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: var(--primary-dark);
    margin: 0;
}

.violation-text strong {
    font-weight: 600;
}

/* --- Text Block (The 5th Item) --- */
.violation-info-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px 10px 0;
}

.violation-info-text p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--primary-dark); /* Dark Navy */
    margin: 0;
}

/* ========================================
   RESPONSIVE GRID
   ======================================== */

/* Tablet: 2 Columns */
@media (min-width: 768px) {
    .violations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }
}

/* Desktop: 4 Columns */
@media (min-width: 1200px) {
    .violations-container {
        padding: 80px 60px;
    }

    .violations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 0;
    }
    
    /* On Desktop, make the text block font slightly larger */
    .violation-info-text p {
        font-size: 26px;
        max-width: 300px;
    }
}


/* ========================================
   HOUSING CTA SECTION STYLES
   ======================================== */

.housing-cta-section {
    padding: 60px 50px;
    background-color: #f4f5f6; /* Outer background matching your page */
    display: flex;
    justify-content: center;
}

.housing-cta-container {
    display: flex;
    width: 100%;
    padding: 20px 30px;
    max-width: 1560px;
    background-color: #CBE4FA;
    border-radius: 40px;
    overflow: hidden;
    min-height: 400px;
}

/* --- Left Side: Image --- */
.housing-cta-image {
    flex: 0 0 45%; /* Takes up 45% of the width */
    position: relative;
}

.housing-cta-image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: 35px;
    display: block;
    margin: auto;
}

/* --- Right Side: Content --- */
.housing-cta-content {
    flex: 1; /* Takes up remaining space */
    padding: 10px 80px 10px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* Typography */
.housing-cta-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #0E0761;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 30px;
}

.housing-cta-sub {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: #0E0761;
    margin-bottom: 10px;
    line-height: 1.2;
}

.housing-cta-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: #0E0761;
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 550px;
}

.housing-cta-footer {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0E0761;
    line-height: 1.2;
}

.highlight-blue {
    color: #007BFF; /* Bright Blue Highlight */
    font-style: italic;
    font-weight: 600;
}

@media(min-width:1024){
    .housing-cta-sub, .housing-cta-text{
        font-size: 20px;
        color: #0E0761;
        margin-bottom: 10px;
        line-height: 1.2;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media(min-width:1400px){
    .housing-cta-title{
        font-size: 50px;
    }

    .housing-cta-footer{
        font-size: 26px;
    }
}

/* Tablet (Portrait) */
@media (max-width: 1024px) {
    .housing-cta-title {
        font-size: 32px;
    }
    
    .housing-cta-content {
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .housing-cta-container {
        flex-direction: column; /* Stack image on top of text */
        border-radius: 30px;
        height: auto;
    }

    .housing-cta-image {
        height: 250px; /* Fixed height for image on mobile */
        width: 100%;
    }

    .housing-cta-content {
        padding: 40px 0px;
    }

    .housing-cta-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .housing-cta-footer {
        font-size: 20px;
        margin-top: 10px;
    }
}

/* ========================================
   ENTITLED LIST STYLES
   ======================================== */

.entitled-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.entitled-list li {
    position: relative;
    padding-left: 20px; /* Space for the bullet */
    margin-bottom: 12px;
    font-size: 18px; /* Adjustable based on preference */
    color: #0E0761; /* Dark Navy Color from design */
    font-weight: 500;
    line-height: 1.2;
}

/* Custom Bullet Point */
.entitled-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0E0761;
    font-weight: bold;
}

/* Ensure Title is aligned left to match list */
.housing-cta-title {
    text-align: left;
    color: #0E0761;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ========================================
   PRODUCT DEFECTS SECTION
   ======================================== */

.product-defects-section {
    padding: 80px 20px;
    padding-bottom: 30px;
    background-color: #f4f5f6; /* Light background color */
}

.product-defects-section .contact-btn-large{
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

/* Reusing existing container and header styles */
.container-figma {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    font-weight: 600;
    color: #0E0761; /* Dark Navy */
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle-center {
    font-weight: 400;
    color: #0D00A9; /* Dark Navy */
    text-align: center;
    margin-bottom: 50px;
}

/* Grid Layout */
.defects-grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between cards */
    flex-wrap: wrap;
}

/* Individual Card Style */
.defect-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 275px;
    min-width: 200px;
    text-align: left;
}

/* Image Styling */
.defect-img-wrapper {
    margin-bottom: 25px;
}

.defect-img {
    width: 100%;
    height: auto;
    border-radius: 40px; /* Large rounded corners as per design */
    display: block;
    object-fit: cover;
}

/* Card Title Styling */
.defect-title {
    flex: 1;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0E0761; /* Dark Navy */
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Card Description Styling */
.defect-desc {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a; /* Dark Grey/Black text */
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
  
    
    .section-subtitle-center {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .defects-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-defects-section {
        padding: 60px 20px;
    }

 
    
    .section-subtitle-center {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* On mobile, cards will stack vertically due to flex-wrap */
    .defect-card {
        max-width: 100%; /* Full width on mobile */
    }

    .defect-title {
        font-size: 22px;
    }
}

@media(min-width:1024px){
    .urgency-text-footer{
        font-size: 24px;
    }
}

/* --- 1. Position the Box on the Right --- */
/* Desktop */
@media (min-width: 1024px) {
    .real-help-content {
        left: auto !important;   /* Reset the previous left alignment */
        right: 5% !important;    /* Position it on the right side */
        bottom: 7%;
        max-width: 476px;        /* Adjust width to fit the content nicely */
    }
}

/* --- 2. Style the Bullet List --- */
.real-help-list {
    list-style: none; /* Remove default browser bullets */
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.real-help-list li {
    position: relative;
    padding-left: 13px; /* Space for the bullet */
    margin-bottom: 0px;
    font-size: 12px;    /* Matches your existing real-help-text size */
    color: #0E0761;     /* Navy Blue */
    line-height: 1.2;
}

/* Custom Blue Bullet Point */
.real-help-list li::before {
    content: "•";       /* Bullet character */
    position: absolute;
    left: 0;
    color: #0E0761;     /* Bullet color */
    font-weight: bold;
    font-size: 18px;    /* Bullet size */
    line-height: 1;
    top: -1px;
}

.real-help-list strong {
    font-weight: 600;
    color: #0E0761;
}

/* --- 3. Footer Styling --- */
.real-help-footer {
    font-size: 19px;   /* Larger than body text */
    font-weight: 800;  /* Extra bold */
    color: #0E0761;
    margin-top: 25px;
    line-height: 1.2;
}

/* --- 4. Mobile Responsiveness --- */
@media (max-width: 1024px) {
    /* Reset position for mobile so it centers */
    .real-help-content {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: 90%;
    }

    .privacy-list li{
        width: max-content;
        margin: 10px auto;
    }
}

@media(min-width:1400px){
    .real-help-content{
        position: relative;
        width: 100%;
        max-width: 1580px;
        min-height: 400px !important;
        border-radius: 40px;
        max-height: 573px;
        overflow: hidden;
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .real-help-content{
        max-width: 525px;
    }

    .real-help-title {
        font-size: 34px;
    }

    
}


@media(min-width:1400px){


    .real-help-content{
        min-height: 270px !important;
        border-radius: 40px !important;
        max-height: 380px !important;
        background-size: cover !important;
        background-position: right !important;
        background-repeat: no-repeat !important;
        max-width: 504px;
        right: 50px !important;
        left: auto !important;
        bottom: 55px !important;
        position: absolute;
    }

    .real-help-container{
        background-position: bottom !important;
            max-height: 620px !important;
    }
}