.features-section {
    padding: 150px 0 0;
}

.features-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--tertiary-color);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white-color);
    border-radius: 40px;
    padding: 20px 30px 30px;
    text-align: center;
    box-shadow: 0 40px 70px rgba(11, 170, 241, 0.3);
    transition: all 0.4s ease-in-out;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(11, 170, 241, 0.15);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    display: inline-block;
    min-width: 330px;
}

.feature-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--tertiary-color);
    text-align: center;
}

@media (max-width: 1200px) {
    .features-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-section {
        padding: 120px 0 0;
    }

    .feature-title-text {
        font-size: 18px;
        min-width: 300px;
    }

    .feature-description {
        font-size: 17px;
        line-height: 1.7;
        color: var(--tertiary-color);
        text-align: center;
    }
}


@media (max-width: 992px) {
    .feature-icon img {
        width: 90%;
        height: 90%;
    }

    .feature-title-text {
        min-width: 100%;
        padding: 8px 25px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 100px 0;
    }

    .features-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 30px;
    }


    .feature-title-text {
        margin: 0;
        font-size: 18px;
        min-width: 50%;
    }

    .feature-description {
        width: 100%;
        text-align: justify;
        font-size: 15px;
    }

    .feature-icon {
        width: 80px;
        height: 70px;
        margin: 0;
    }

    .feature-icon img {
        width: 100%;
        height: 100%;
    }

    .feature-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .feature-title-text {
        margin: 0;
        font-size: 16px;
        min-width: 54%;
    }

    .feature-header {
        margin-bottom: 8px;
    }

    .features-title {
        font-size: 24px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .feature-description {
        font-size: 16px;
        line-height: 1.9;
    }
}

@media (max-width: 480px) {

    .features-section {
        padding: 80px 0;
    }

    .features-title {
        font-size: 22px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin: 0;
    }

    .feature-title-text {
        font-size: 15px;
        min-width: 70%;
    }

}


@media (max-width: 390px) {

    .features-title {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .features-section {
        padding: 80px 0;
    }

    .feature-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .feature-title-text {
        font-size: 14px;
        min-width: 72%;
        padding: 8px 14px;
    }

    .feature-card {
        border-radius: 30px;
    }
}