
.box-commitment-container {
    display: flex;
    justify-content: space-around; 
    align-items: flex-start; 
    padding: 20px 0px;
    flex-wrap: wrap;
    gap: 20px;
}

.box-commitment{
	border: 1px solid transparent;
    background-color: #ffffff; 
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    padding: 30px; 
    text-align: center;
    max-width: 90%;
    flex: 1; 
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 					
}

.box-commitment:hover{
	transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}		

.box-commitment-title {
    color: var(--color-font-title); 
    margin-bottom: 15px; 
}

.box-commitment-title::after {
	content: "";
	display: block;
	width: 120px; 
	height: 13px;
	margin: 30px auto 30px; 
	background: url('../images/img-home-section-header-line-wave.webp') no-repeat center;
	background-size: contain;
	background-size: cover; 
}

.box-commitment-text{
	line-height: 1.6em;
	min-height: 15em;
	font-size: normal;
	color: var(--color-font-text);
}

.box-commitment-text a{
	cursor: pointer;
	text-decoration: none;
	color: var(--color-primary-blue);
	font-weight: bold;
}

.box-commitment-text a:hover{
	color: var(--color-primary-orange);
}