.services-section {
    background: #202225;
    border-radius: 18px;
    margin: 2.5rem 0;
    padding: 2em 2rem;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
}
.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}
.services-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #ff9800;
    letter-spacing: 0.04em;
}
.services-more-link {
    color: #ff9800;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.18s, background 0.18s;
    border-radius: 6px;
    padding: 0.3em 0.9em;
    /* background: #fffbe6; */
}
.services-more-link:hover {
    color: #fff;
    background: linear-gradient(90deg, #ffb300 60%, #ff9800 100%);
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255,179,0,0.07);
    border: 1.5px solid #ffe082;
    padding: 1.3rem 1.2rem 1.1rem 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: 246px;
    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-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 0.4em;
    margin-top: 0;
}
.service-card-desc {
    color: #23272b;
    font-size: 1.04rem;
    line-height: 1.5;
    margin-bottom: 0.7em;
    flex: 1 1 auto;
}
.service-card-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);
}
@media (max-width: 900px) {
    .services-section { padding: 1.2rem 0.7rem; }
    .services-list { grid-template-columns: 1fr; }
}