/* PAGE TITLE */
.page-dichvu {
    background: url("../images/page-dichvu.jpg") center/cover no-repeat;
}

/* SERVICES */
.services {
    padding: 60px 0;
    background: #f5f5f5;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s;
    border-top: 5px solid #0a5c36;
}

.service-card h3 {
    color: #0a5c36;
    margin-bottom: 10px;
}

.service-card p {
    display: block;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* BUTTON */
.btn-service {
    display: inline-block;
    padding: 10px 20px;
    background: #0a5c36;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-service:hover {
    background: #f5c542;
    color: #000;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}