/* services.css
   Scoped styles for service listings within #site-content.
*/

#site-content .services-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 20px auto;
}

#site-content .service-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#site-content .service-item h2 a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

#site-content .service-item h2 a:hover {
    text-decoration: underline;
    color: #0056b3;
}

#site-content .service-details {
    display: none;
    background: #fff;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#site-content .service-details.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
