.service-page-section {
    background-color: #12111f;
}

.sp-wrapper {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 3rem;
    color: #bbbdb2;
}

.sp-heading {
    color: white;
    text-align: center;
}

.sp-tagline {
    text-align: center;
    font-style: italic;
}

.sp-img {
    width: 100%;
    height: 23rem;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    margin-top: 2rem;
}

.sp-subheading {
    font-size: 1rem;
    color: white;
}

.sp-ul {
    list-style: none;
}

.check-icon {
    color: green;
    margin-right: 0.125rem;
}

.pdf-section {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3rem;
}

.pdf-content {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border-radius: 28px;
}

.pdf-heading {
    color: #12111f;
    font-size: 1.5rem;
}

.pdf-btns-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
}

.view-pdf, .download-pdf {
    font-size: 0.875rem;
    display: inline-block;
    width: 8rem;
    text-align: center;
    text-decoration: none;
    background-color: #bbbdb2;
    border: 1px solid #bbbdb2;
    color: black;
    font-weight: 500;
    border-radius: 4px;
    padding: 0.5rem;
}

.download-pdf {
    background-color: #12111f;
    border: 1px solid #12111f;
    color: white;
}

@media (max-width: 1023px) {
    .sp-wrapper {
        grid-template-columns: auto;
        max-width: 32rem;
        margin: 0 auto;
    }

    .pdf-section {
        grid-template-columns: auto;
        max-width: 32rem;
    }
}

@media (max-width: 425px) {
    /* .pdf-content > p {
        text-align: center;
    }

    .pdf-heading {
        text-align: center;
    }
     */
    .pdf-btns-wrapper {
        grid-template-columns: auto;
        padding-top: 1rem;
    }

    .view-pdf, .download-pdf {
        width: 100%;
    }
}