.services-container {
    overflow-y: auto;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
}

.services-main-title {
    font-size: 2rem;
    font-weight: 700;
}

.services-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--base-gray-percent);
    border: 1px solid var(--base-gray-percent);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--base-dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-link {
    width: 80%;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--action-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.service-link:hover {
    background-color: var(--action-hover-green);
    color: white;
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
