/* PAGE BACKGROUND */
.services-page {
    background: #f3f4f6;
    padding: 60px 20px;
    min-height: 100vh;
}

/* HERO */
.services-hero {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.services-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.services-hero p {
    color: #555;
    font-size: 16px;
}

/* SERVICES GRID */
.services-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* SERVICE CARD */
.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ICON */
.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero {
        padding: 30px;
    }
}
