/* Documents landing page (interest rates & service fees)
   Page is built from stacked images; only the PDF buttons are real UI. */

/* Constrain content to the same centered container width as the rest of
   the site (matches Bootstrap's .container breakpoints: 750/970/1170px). */
.documents-page {
    background: #ffffff;
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1199px) {
    .documents-page {
        max-width: 970px;
    }
}

@media (max-width: 991px) {
    .documents-page {
        max-width: 750px;
    }
}

@media (max-width: 767px) {
    .documents-page {
        max-width: 100%;
    }
}

.documents-page .doc-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; /* kill whitespace gaps between stacked images */
}

.documents-page .doc-section img {
    display: block;
    width: 100%;
    height: auto;
}

/* offset hash-scroll target so it clears the fixed header */
.documents-page .doc-section[id] {
    scroll-margin-top: 90px;
}

/* ---- Download PDF button ---- */
.documents-page .doc-download {
    display: flex;
    justify-content: center;
    background: #ffffff;
    padding: 28px 16px 36px;
}

.documents-page .doc-download .btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    padding: 16px 28px;
    border-radius: 10px;
    background: #4d4d4d;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color .2s ease, transform .15s ease;
}

.documents-page .doc-download .btn-pdf:hover {
    background: #c3002f; /* Nissan red on hover */
    transform: translateY(-2px);
    color: #ffffff;
}

.documents-page .doc-download .btn-pdf .ic {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.documents-page .doc-download .btn-pdf .ic svg {
    width: 26px;
    height: 26px;
}

.documents-page .doc-download .btn-pdf .txt {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.documents-page .doc-download .btn-pdf .txt .t1 {
    font-size: 22px;
    font-weight: 700;
}

.documents-page .doc-download .btn-pdf .txt .t2 {
    font-size: 14px;
    font-weight: 400;
    opacity: .9;
}

@media (max-width: 767px) {
    .documents-page .doc-download {
        padding: 18px 14px 24px;
    }
    .documents-page .doc-download .btn-pdf {
        padding: 13px 18px;
        gap: 12px;
    }
    .documents-page .doc-download .btn-pdf .ic {
        width: 38px;
        height: 38px;
    }
    .documents-page .doc-download .btn-pdf .ic svg {
        width: 22px;
        height: 22px;
    }
    .documents-page .doc-download .btn-pdf .txt .t1 {
        font-size: 18px;
    }
    .documents-page .doc-download .btn-pdf .txt .t2 {
        font-size: 12px;
    }
}
