.features-contents {
    position: relative;
    background-image: url('../assets/patterns/shape-pattern-d.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 110%;
    background-color: var(--p-color);
    border-radius: 50px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.features-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-item-header h3 {
    font-weight: 700;
}

.features-icon {
    line-height: 0;
}

.features-icon img {
    height: 35px;
}

.features-title h3 {
    font-size: 28px;
    font-weight: 700;
}

.features-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.features-item {
    background: var(--w-color);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-item-header img {
    width: 100px;
    height: 100px;
}

.features-item-text p {
    font-size: 18px;
    line-height: 2;
}

.features-item-header h3 {
    font-size: 20px;
}


@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .features-contents {
        padding: 40px;
    }

    .features-icon img {
        height: 30px;
    }

    .features-title h3 {
        font-size: 26px;
    }

    .features-item {
        padding: 20px;
    }

    .features-item-header img {
        width: 90px;
        height: 90px;
    }

    .features-item-text p {
        font-size: 17px;
        line-height: 1.8;
    }
}

@media (max-width: 992px) {
    .features-contents {
        padding: 30px;
        gap: 30px;
        border-radius: 40px;
    }

    .features-item-header img {
        width: 80px;
        height: 80px;
    }

    .features-item-header h3 {
        font-size: 18px;
    }

    .features-item-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .features-icon img {
        height: 24px;
    }

    .features-title h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .features-contents {
        padding: 30px;
        gap: 30px;
        border-radius: 40px;
    }

    .features-icon img {
        height: 24px;
        min-width: 35px;
    }

    .features-item-header img {
        width: 70px;
        height: 70px;
    }

    .features-title h3 {
        font-size: 22px;
        line-height: 1.8;
    }

    .features-items {
        flex-direction: column;
    }

    .features-item {
        width: 100%;
    }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    .features-icon img {
        height: 22px;
    }

    .features-title h3 {
        font-size: 20px;
        line-height: 1.9;
    }

    .features-contents {
        padding: 20px;
        gap: 20px;
        border-radius: 30px;
    }

    .features-item {
        padding: 10px 15px;
    }
}

@media (max-width: 390px) {
    .features-item-header h3 {
        font-size: 16px;
    }
}