.accepted-debt-types {
    background-color: #f8fafc;
    padding: 60px 20px;
    overflow: hidden;
}

.accepted-debt-types__container {
    max-width: 1200px;
    margin: 0 auto;
}

.accepted-debt-types__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.accepted-debt-types__image-section {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.accepted-debt-types__image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.accepted-debt-types__text-section {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.accepted-debt-types__main-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #000000;
    text-align: left;
}

.accepted-debt-types__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 30px 0;
    text-align: left;
}

.accepted-debt-types__sub-heading {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #000000;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accepted-debt-types__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accepted-debt-types__item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.accepted-debt-types__item:last-child {
    margin-bottom: 0;
}

.accepted-debt-types__checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.accepted-debt-types__checkmark svg {
    width: 12px;
    height: 12px;
}

.accepted-debt-types__checkmark svg path {
    stroke: #49B46B;
}

.accepted-debt-types__item-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .accepted-debt-types {
        padding: 80px 40px;
    }

    .accepted-debt-types__content {
        gap: 60px;
    }

    .accepted-debt-types__main-heading {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .accepted-debt-types__description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .accepted-debt-types__sub-heading {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .accepted-debt-types__item {
        margin-bottom: 16px;
        gap: 16px;
    }

    .accepted-debt-types__checkmark {
        width: 24px;
        height: 24px;
    }

    .accepted-debt-types__checkmark svg {
        width: 14px;
        height: 14px;
    }

    .accepted-debt-types__checkmark svg path {
        stroke: #49B46B;
    }

    .accepted-debt-types__item-text {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .accepted-debt-types__content {
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
        justify-content: center;
    }

    .accepted-debt-types__content--left {
        flex-direction: row;
    }

    .accepted-debt-types__content--right {
        flex-direction: row-reverse;
    }

    .accepted-debt-types__image-section {
        flex: 0 0 57%;
        max-width: none;
    }

    .accepted-debt-types__text-section {
        flex: 0 0 35%;
        max-width: none;
    }

    .accepted-debt-types__main-heading {
        font-size: 3rem;
    }

    .accepted-debt-types__description {
        font-size: 1.2rem;
    }

    .accepted-debt-types__sub-heading {
        font-size: 1.3rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .accepted-debt-types {
        padding: 100px 40px;
    }

    .accepted-debt-types__content {
        gap: 100px;
    }

    .accepted-debt-types__main-heading {
        font-size: 3.5rem;
    }

    .accepted-debt-types__description {
        font-size: 1.3rem;
    }

    .accepted-debt-types__sub-heading {
        font-size: 1.4rem;
    }
}
