#ecs-customer-boxes, #ecs-service-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.ecs-box {
    padding: 20px 40px;
    background-color: #1b1f3b; /* Dark blue background */
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff; /* White text */
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
    text-decoration: none; /* Remove underline */
    max-width: 300px; /* Set a max width for service boxes */
    flex-direction: column;
}

.ecs-box h3, .ecs-box h4 {
    margin: 0 0 10px;
    font-size: 18px;
  color: #cccccc;
}

.ecs-description, .ecs-service-description {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
    text-align: left;
}

.ecs-box:hover {
    background-color: #3c4d8c; /* Slightly lighter blue on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
    transform: translateY(-2px); /* Lift on hover */
}

#ecs-back-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #007bff; /* Blue arrow */
    z-index: 1000; /* Ensure it's on top of other elements */
}

#ecs-back-button:before {
    content: '\2190'; /* Unicode for the left arrow */
}

.ecs-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ecs-service {
    text-decoration: none; /* Remove underline from links */
    color: #ffffff; /* Ensure service links are also white */
}

.ecs-service:hover {
    text-decoration: none; /* Ensure underline is not added on hover */
}
