
        body { background-color: #000000; }
        /* Để đảm bảo header dính (sticky) hoạt động nếu có */
        #header .top {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: #000000; 
        }
/* ======================================= */
/* CSS CHUNG CHO TRANG LIỆU TRÌNH */
/* ======================================= */

.services-page {
    padding-top: 150px; /* Tạo khoảng trống để header cố định không che mất nội dung */
    padding-bottom: 80px;
    color: #ffffff;
    background-color: #000000;
}

.services-page .box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5vw; /* Sử dụng viewport width để chữ co giãn */
    text-align: center;
    margin-bottom: 60px;
    color: #f7f7f7;
    letter-spacing: 2px;
    font-weight: 500;
}

.category-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    color: #5a8d5c; /* Màu xanh lá cây thương hiệu */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

/* ======================================= */
/* BỐ CỤC LIỆU TRÌNH (RESPONSIVE) */
/* ======================================= */

.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Khoảng cách giữa các liệu trình */
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #111111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.service-image {
    flex: 1; /* Chiếm 50% không gian trên PC */
    min-height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-detail {
    flex: 1; /* Chiếm 50% không gian trên PC */
    padding: 40px;
}

.service-detail h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-detail p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}

.service-price {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #5a8d5c;
    margin-bottom: 30px;
}

.btn-detail {
    font-family: 'Josefin Sans', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    background-color: #5a8d5c;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-detail:hover {
    background-color: #4a754c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Đảo ngược thứ tự cho các item có class 'reverse' (PC) */
.service-item.reverse {
    flex-direction: row-reverse;
}

/* ======================================= */
/* KHỐI KÊU GỌI HÀNH ĐỘNG (CTA) */
/* ======================================= */

.cta-block {
    text-align: center;
    padding: 50px 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-top: 50px;
}

.cta-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #f7f7f7;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    font-family: 'Josefin Sans', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border: 2px solid #ffffff;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
}


/* ======================================= */
/* MEDIA QUERIES (RESPONSIVE) */
/* ======================================= */

/* Dành cho máy tính bảng và điện thoại màn hình lớn (< 992px) */
@media (max-width: 991px) {
    .main-title {
        font-size: 6vw;
        margin-bottom: 40px;
    }
    .service-item,
    .service-item.reverse {
        flex-direction: column; /* Chuyển sang bố cục chồng dọc */
    }

    .service-image {
        width: 100%;
        min-height: 250px;
        order: 1; /* Đưa hình ảnh lên trên */
    }

    .service-detail {
        width: 100%;
        padding: 30px;
        order: 2; /* Đưa chi tiết xuống dưới */
    }
    
    .service-detail h3 {
        font-size: 28px;
    }
}

/* Dành cho điện thoại (màn hình nhỏ hơn 480px) */
@media (max-width: 479px) {
    .services-page {
        padding-top: 100px; /* Giảm padding trên */
    }
    .main-title {
        font-size: 10vw;
    }

    .category-title {
        font-size: 24px;
    }

    .service-detail h3 {
        font-size: 24px;
    }
    
    .service-price {
        font-size: 16px;
    }

    .service-detail {
        padding: 20px;
    }

    .btn-detail {
        width: 100%;
        text-align: center;
    }
}
