.services {
    background: #f9fdfc;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.4em;
    color: #007bff;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.service-list li {
    font-size: 1.1em;
    background: #ffffff;
    margin: 10px 0;
    padding: 12px 20px;
    border-left: 6px solid #28a745;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.service-list li:hover {
    transform: translateX(5px);
}