.pb-0{
    padding-bottom:0px;
}
.legal-intro {
    margin-bottom: 50px;
    padding: 30px 35px;
    background: #fff;
    border-left: 4px solid var(--green);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(7,17,31,.06);
}

.legal-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}


/* Sections */

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-of-type {
    border-bottom: 0;
    margin-bottom:0px;
    padding-bottom:0px;
}

.legal-section h2 {
    margin-bottom: 18px;
    color: #07111f;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: 27px;
    font-weight: 700;
}

.legal-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.85;
}

.legal-section p:last-child {
    margin-bottom: 0;
}


/* Lists */

.legal-section ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.legal-section li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
    line-height: 1.7;
}
.legal-section li::before {
    content: "\f058"; 
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--green);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
}

/* Company Details */

.company-details {
    margin-top: 25px;
    padding: 25px 30px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
}

.company-details p {
    margin-bottom: 18px;
}

.company-details p:last-child {
    margin-bottom: 0;
}


/* Notice */

.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(
        135deg,
        rgba(41,182,246,.08),
        rgba(155,227,26,.08)
    );
    border: 1px solid rgba(41,182,246,.15);
    border-radius: 18px;
}

.legal-notice-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07111f;
    color: var(--green);
    border-radius: 50%;
    font-size: 20px;
}

.legal-notice h3 {
    margin: 0 0 8px;
    color: #07111f;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: 20px;
}

.legal-notice p {
    margin: 0;
    line-height: 1.7;
}


/* Responsive */

@media (max-width: 767px) {
    .legal-content {
        padding: 55px 0 70px;
    }

    .legal-intro {
        padding: 25px;
        margin-bottom: 40px;
    }

    .legal-section {
        margin-bottom: 35px;
        padding-bottom: 30px;
    }

    .legal-section h2 {
        font-size: 23px;
    }

    .legal-section p {
        font-size: 15px;
    }

    .legal-notice {
        padding: 25px;
        flex-direction: column;
    }

}
/* =========================================
   COMPLAINTS PAGE - NEW STYLES
   ========================================= */

/* Contact Details */

.complaint-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.complaint-contact-item {
    padding: 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: var(--transition, .35s ease);
}

.complaint-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7, 17, 31, .08);
}

.complaint-contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--green),var(--green-dark));
    color: var(--navy-800);
    font-size: 18px;
}

.complaint-contact-item h3 {
    margin: 0 0 8px;
    color: #07111f;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: 17px;
}

.complaint-contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.complaint-contact-item a {
    text-decoration: none;
    word-break: break-word;
}

.complaint-contact-item a:hover {
    color: var(--green);
}


/* Complaint Process */

.complaint-process {
    position: relative;
    margin-top: 35px;
}

.complaint-stage {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 0 0 40px;
}

.complaint-stage:last-child {
    padding-bottom: 0;
}

.complaint-stage::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 55px;
    width: 2px;
    height: calc(100% - 15px);
    background: #e5e7eb;
}

.complaint-stage:last-child::before {
    display: none;
}

.complaint-stage-number {
    position: relative;
    z-index: 2;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient, linear-gradient(135deg, #29b6f6, #9be31a));
    color: #07111f;
    border-radius: 50%;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(41, 182, 246, .2);
}

.complaint-stage-content {
    flex: 1;
    padding: 5px 0 0;
}

.complaint-stage-content h3 {
    margin: 0 0 12px;
    color: #07111f;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: 21px;
    font-weight: 700;
}

.complaint-stage-content p {
    margin: 0;
    line-height: 1.8;
}


/* Review List */

.complaint-review-list {
    margin-top: 20px;
}

.complaint-review-list ul {
    margin: 0;
}


/* Fair Treatment */

.fair-treatment {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.fair-treatment-item {
    padding: 22px 15px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    transition: var(--transition, .35s ease);
}

.fair-treatment-item:hover {
    transform: translateY(-6px);
    border-color: rgba(41, 182, 246, .3);
    box-shadow: 0 15px 35px rgba(7, 17, 31, .07);
}


.fair-treatment-item i {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: rgba(61,220,132,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform .4s var(--ease);
}
.fair-treatment-item span {
    display: block;
    color: #07111f;
    font-weight: 600;
    font-size: 14px;
}


/* Responsive */

@media (max-width: 991px) {

    .complaint-contact {
        grid-template-columns: 1fr 1fr;
    }

    .fair-treatment {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 767px) {

    .complaint-contact {
        grid-template-columns: 1fr;
    }

    .complaint-stage {
        gap: 18px;
    }

    .complaint-stage::before {
        left: 21px;
        top: 48px;
    }

    .complaint-stage-number {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        font-size: 13px;
    }

    .complaint-stage-content h3 {
        font-size: 18px;
    }

    .fair-treatment {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 480px) {

    .fair-treatment {
        grid-template-columns: 1fr;
    }

}
