.services-scroll-wrapper {
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.services-scroll-header {
    text-align: center;
    margin-bottom: 40px;
}
.services-scroll-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}
.services-scroll-cards {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}
.services-scroll-cards > .wp-block { 
    display: flex;
    gap: 20px;
}
.service-card {
    flex: 0 0 300px;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    margin-top: 0;
    font-size: 1.4em;
}
.service-card .card-desc {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}
.service-card .card-info {
    flex-grow: 1;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.service-card .card-info ul {
    padding-left: 20px;
    margin: 0;
}
.service-card .card-price {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}
.service-card .card-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
}
.service-card .card-button:hover {
    background: #333;
    color: #fff;
}