/* ================= portfolio US BANNER ================= */
.quicklink-banner {
    width: 100%;
    height: 420px;

    position: relative;
    overflow: hidden;


    /* USE YOUR FULL IMAGE HERE */
    background: url("../images/terms\ \(1\).jpeg") no-repeat center/cover;
}

/* Dark gradient overlay (LEFT SIDE) */
.quicklink-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    /* LEFT dark → RIGHT transparent (same as image) */
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.763) 0%,
            rgba(0, 0, 0, 0.581) 35%,
            rgba(0, 0, 0, 0.212) 55%,
            rgba(0, 0, 0, 0.014) 75%,
            transparent 100%);

    z-index: 1;
}

/* Content wrapper */
.quicklink-banner-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.quicklink-banner-content {
    padding-left: clamp(15px, 5vw, 80px);
    max-width: 600px;

}

/* Title */
.quicklink-banner-content h1 {
    color: #fff;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 4px;
}

/* Subtitle */
.quicklink-banner-content p {
    color: #ddd;
    font-size: 16px;
    font-weight: 400;
    font-family: "Catamaran", sans-serif;
}

@media (max-width: 992px) {
    .quicklink-banner {
        height: 320px;
    }

    .quicklink-banner-content {
        padding-left: 40px;
    }

    .quicklink-banner-content h1 {
        font-size: 32px;
    }

    .quicklink-banner-content {

        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .quicklink-banner {
        height: 250px;

    }

    .quicklink-banner-content {
        padding-left: 20px;
    }

    .quicklink-banner-content h1 {
        font-size: 26px;
    }

    .quicklink-banner-content p {
        font-size: 14px;


    }


    .quicklink-banner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px auto 0px auto;
    }
}


/* ================= DETAILS SECTION ================= */
.details-section {
    background: #f8f9fb;
    padding: 80px 0;
}

.details-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Main Title */
.details-title {
    font-size: 34px;
    font-weight: 600;
    color: #6b7280;
    /* light grey like image */
    margin-bottom: 40px;
    font-family: "Montserrat", sans-serif;
}

/* Block spacing */
.details-block {
    margin-bottom: 40px;
}

/* Sub headings */
.details-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

/* Paragraph */
.details-block p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    font-family: "Catamaran", sans-serif;
}

/* List */
.details-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.details-list li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    font-family: "Catamaran", sans-serif;
}

/* Bold label */
.details-list li strong {
    color: #111827;
    font-weight: 600;
}

@media (max-width: 768px) {
    .details-section {
        padding: 60px 20px;
    }

    .details-title {
        font-size: 26px;
    }

    .details-block h3 {
        font-size: 22px;
    }

    .details-block p,
    .details-list li {
        font-size: 15px;
    }
}