/* services-section-additional.css */
#services {
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(32, 178, 170, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.services-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Clean and focused services section styling */
#services {
    background: transparent;
    padding: 40px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-services:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.btn-services svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn-services:hover svg {
    transform: translateX(5px);
}