.service-boxes-container {
    display: inline-flex;
    flex-direction: row;
	width: 100%;
    gap: 40px;
    padding: 40px 15px;
    background-color: transparent;
    border-radius: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.box-number {
    position: absolute;
    left: 40%;
    top: -45px;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
    transition: all 0.4s ease;
    z-index: 5;
}

.service-box:hover .box-number {
    transform: scale(1.1);
}

.box-number.number-1 {
    background-color: #F37021;
}

.box-number.number-2 {
    background-color: #F37021;
}

.star-icon {
    margin: 15px auto;
    border-radius: 3px;
    display: block;
    width: fit-content;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 6px 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-weight: normal;
}

.star-icon:hover {
    transform: scale(1.1);
	background-color: #472F92 !important;
}

.star-icon.star-1 {
    background-color: #F37021;
    color: white;
}

.star-icon.star-2 {
    background-color: #F37021;
    color: white;
}

.box-content {
    flex: 1;
}

.box-title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0;
    text-align: center;
}

.box-description {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

@keyframes slideInNumber {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInStar {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box .box-number {
    animation: slideInNumber 0.6s ease-out 0.2s both;
}


@media (max-width: 768px) {
    .service-boxes-container {
        flex-direction: column;
        gap: 60px;
    }

    .service-box {
        min-width: 100%;
        max-width: 100%;
    }
}