.container-category-section {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px 16px;
    box-sizing: border-box;
    z-index: 3;
}

.container-category-section .section-bg-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;
}

.container-category-section .section-bg-desktop svg {
    width: 100%;
    height: 100%;
    display: block;
}

.container-category-section .section-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container-category-section .section-bg-mobile svg {
    width: 100%;
    height: 100%;
    display: block;
}

.container-category-section .section-inner {
    width: 100%;
    max-width: 1216px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.container-category-section .section-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.container-category-section .section-badge {
    background-color: #fff9f5;
    padding: 6px 35px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container-category-section .section-badge span {
    font-family: 'Quicksand', sans-serif;
    color: #1f1f42;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    line-height: 1.5;
}

.container-category-section .section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
}

.container-category-section .section-desc {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    word-wrap: break-word;
}

.container-category-section .section-cards-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.container-category-section .section-card {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0px 8px 15px rgba(31, 31, 66, 0.04);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .container-category-section {
        padding: 60px 16px;
    }

    .container-category-section .section-card {
        padding: 16px;
        gap: 16px;
    }

    .container-category-section .section-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .container-category-section .section-desc {
        font-size: 16px;
    }
}

.container-category-section .section-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-category-section .section-card-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.container-category-section .section-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.container-category-section .section-card-title {
    color: #1f1f42;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

.container-category-section .section-card-desc {
    color: #6a7282;
    font-size: 16px;
    line-height: 1.425;
    display: block;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .container-category-section .section-bg-mobile {
        display: none;
    }

    .container-category-section .section-bg-desktop {
        display: block;
    }
}

@media (min-width: 1024px) {
    .container-category-section {
        padding: 100px 0;
    }

    .container-category-section .section-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 64px;
    }

    .container-category-section .section-content-col {
        width: 50%;
        max-width: 592px;
    }

    .container-category-section .section-title {
        font-size: 48px;
        line-height: 1.1;
    }

    .container-category-section .section-desc {
        font-size: 16px;
        line-height: 1.5;
    }

    .container-category-section .section-cards-col {
        width: 50%;
        max-width: 560px;
    }

    .container-category-section .section-card-title {
        font-size: 20px;
    }
}
