.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 70px;
    }

    .value-card {
        background: var(--white);
        border-radius: 12px;
        padding: 40px 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .value-icon-container {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color:var(--light-gray);
        border-radius: 50%;
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }

    .value-card:hover .value-icon-bg {
        transform: scale(1.05);
    }

    .value-icon {
        color: var(--black);
        font-size: 2rem;
        position: relative;
        z-index: 2;
    }

    .value-card h3 {
        color: var(--black);
        margin-bottom: 15px;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .value-card p {
        color: var(--medium-gray);
        line-height: 1.7;
        font-size: 1rem;
    }

    .commitment-section {
        background-color: var(--white);
        padding: 50px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .commitment-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--black), var(--black));
    }

    .commitment-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 600;
        color: var(--black);
    }

    .commitment-section p {
        line-height: 1.8;
        margin-bottom: 15px;
        color: var(--medium-gray);
    }



    @media (max-width: 968px) {


        .commitment-section {
            padding: 30px;
        }


    }

    @media (max-width: 640px) {

        .value-card {
            padding: 30px 20px;
        }

        .commitment-section {
            padding: 25px 20px;
        }
    }
}