.services-page {
    margin-top: 2.5rem;
    background: #fffbe6;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(255,179,0,0.13), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 2.7rem 2.5rem 2.2rem 2.5rem;
    border: 1.5px solid #ffe082;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.services-page > h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff9800;
    margin-bottom: 2.2rem;
    letter-spacing: 0.04em;
    text-align: center;
    text-shadow: 0 2px 8px #ffe08244;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(255,179,0,0.09);
    border: 1.5px solid #ffe082;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
    position: relative;
    min-height: 220px;
    overflow: hidden;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(255,179,0,0.13);
    border-color: #ffb300;
    transform: translateY(-4px) scale(1.03);
}
.service-card img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.7em;
    border: 1px solid #ffe082;
    background: #fffbe6;
    box-shadow: 0 2px 8px rgba(255,179,0,0.06);
}
.service-card h3 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 0.4em;
    margin-top: 0;
}
.service-card > div {
    color: #23272b;
    font-size: 1.04rem;
    line-height: 1.5;
    margin-bottom: 0.7em;
    flex: 1 1 auto;
}
.service-price {
    font-size: 1.08rem;
    color: #178a3a;
    font-weight: 700;
    background: #fffbe6;
    border-radius: 6px;
    padding: 0.2em 0.7em;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(255,179,0,0.06);
    margin-bottom: 0.5em;
}
.service-promo {
    margin-top: 0.5em;
    background: #fffbe6;
    border-radius: 6px;
    padding: 0.2em 0.7em;
    font-size: 1.01rem;
    font-weight: 600;
    color: #ef4444;
    box-shadow: 0 1px 4px rgba(255,179,0,0.06);
}
.service-promo a {
    color: #ef4444;
    text-decoration: none;
    transition: color 0.18s;
}
.service-promo a:hover {
    color: #b91c1c;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .services-page { padding: 1.2rem 0.7rem; }
    .services-list { grid-template-columns: 1fr; }
}