.service-box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.service-box-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #ffe4e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon-wrapper i,
.service-icon-wrapper svg {
    font-size: 32px;
    color: #e11d48;
}

.service-icon-wrapper img {
    width: 40px;
    height: auto;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.service-description {
    font-size: 20px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-link-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-link-circle:hover {
    background-color: #1F8A4C;
    color: #fff !important;
}