/* Commitment Section Styles */
.commitment-section {
    width: 100%;
    padding: 0 120px;
}

.commitment-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.commitment-title {
    font-family: 'IvyOra Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
    line-height: 1;
    color: #005b68;
    text-align: center;
    margin: 0 0 48px 0;
}

.commitment-title strong {
    font-weight: 700;
    font-style: normal;
}

/* Cards Grid */
.commitment-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.commitment-card {
    background: #fffbf8;
    border: 0.832px solid #d4d2e3;
    border-radius: 12.474px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 335px;
    flex: 1 0 0;
    height: 158px;
    padding: 16px;
    box-sizing: border-box;
}

.commitment-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.commitment-card-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.commitment-card-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #005b68;
    text-align: center;
    margin: 0;
}

@media (max-width: 1199px) {
    .commitment-section {
        padding: 0 60px;
    }

    .commitment-card {
        min-width: 300px;
        height: 140px;
        gap: 16px;
        padding: 14px;
    }

    .commitment-card-icon {
        width: 40px;
        height: 40px;
    }

    .commitment-card-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .commitment-section {
        padding: 0 16px;
    }

    .commitment-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .commitment-cards {
        flex-direction: column;
        gap: 16px;
    }

    .commitment-card {
        min-width: 100%;
        max-width: 100%;
        height: 120px;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 12.474px;
    }

    .commitment-card-icon {
        width: 24px;
        height: 24px;
    }

    .commitment-card-title {
        font-size: 16px;
    }
}
