body {
    background-color: #ffffff;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem 1rem;
}

.service-box {
    background-color: #5e9dba;
    color: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    min-height: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.service-box:hover {
    transform: translateY(-10px);
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-title .bi {
    margin-right: 0.5rem;
    font-size: 1.7rem;
    vertical-align: middle;
}

.service-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 500;
    color: #ffffff;
}

.service-box-cta {
    background-color: #e0f7fa;
    /* Light Blue */
    color: #004d40;
    /* Dark Teal */
}

.service-box-cta p {
    color: #004d40;
    /* Dark Teal text for better contrast */
}

.service-box-cta .btn-primary {
    background-color: #00796b;
    /* Teal */
    border-color: #00796b;
    color: #ffffff;
}

.service-box-cta .btn-primary:hover {
    background-color: #004d40;
    /* Darker Teal */
    border-color: #004d40;
}