.section__service-category-detail .menu-section {
    width: 100%;
    /* max-width: 600px; */
    margin: 30px auto;
}

.section__service-category-detail .menu-btn {
    text-align: center;
    margin-bottom: 20px;
}

.section__service-category-detail .menu-btn a {
    display: inline-block;
    background-color: #4b4b4b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.section__service-category-detail .menu-btn a:hover {
    background-color: #333;
}

.section__service-category-detail .menu-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section__service-category-detail .menu-table thead {
    background-color: #28c9cf;
    color: white;
}

.section__service-category-detail .menu-table th,
.section__service-category-detail .menu-table td {
    text-align: left;
    padding: 10px 15px;
    border: 1px solid #e6e6e6;
    font-size: 15px;
}

.section__service-category-detail .menu-table th:first-child,
.section__service-category-detail .menu-table td:first-child {
    width: 70%;
}

.section__service-category-detail .menu-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 500px) {

    .section__service-category-detail .menu-table th,
    .section__service-category-detail .menu-table td {
        padding: 8px;
        font-size: 14px;
    }

    .section__service-category-detail .menu-btn a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.section__service-category-detail .service-card {
    /* width: 250px; */
    border: 1px solid #eee;
    background-color: #fdfdfd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section__service-category-detail .service-header {
    background-color: #28c9cf;
    /* màu xanh ngọc */
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    padding: 12px 20px;
}

.section__service-category-detail .service-list {
    list-style: none;
    margin: 0;
    padding: 12px 15px;
}

.section__service-category-detail .service-list li {

    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid #f2f2f2;
    padding: 4px 0;
}

.section__service-category-detail .service-list li a {
    color: #222;
}


.section__service-category-detail .service-list li a:hover {
    color: #28c9cf;
}

.section__service-category-detail .service-list li:last-child {
    border-bottom: none;
}

.section__service-category-detail .service-list li.highlight a {
    color: #28c9cf;
    font-weight: 500;
}

.section__service-category-detail .service-item {
    background-color: #f8f8f8;
    /* nền xám nhạt */
    border-left: 3px solid #28c9cf;
    /* viền trái xanh ngọc */
    padding: 20px 25px;
    /* khoảng cách trong */
    font-size: 26px;
    color: #111;
    /* màu chữ */
    line-height: 1.6;
    aspect-ratio: auto;
    cursor: default;
}

.section__service-category-detail .service-item:hover {
    background-color: #f0fafa;
    transition: background 0.3s ease;
}

.section__service-category-detail.main {
    padding-top: 40px;
}


.menu-service-content {
    padding: 25px 8px;
}


.menu-service-content {
    padding: 25px 8px;
}

.menu-service-content ul {
    padding-left: 30px;
}

.menu-service-content ul li {
    list-style: revert-layer;
}

.menu-service-content p {
    margin-bottom: 8px;
}

.menu-service-content img {

    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.section__service-category-detail .menu-table th {
    font-size: 20px;
    text-transform: uppercase
}


.service-section {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.service-title {
    color: #28c9cf;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-divider {
    width: 60px;
    height: 2px;
    background-color: #28c9cf;
    border: none;
    margin: 0 auto 40px;
}

.service-grid-for-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-grid-for-detail {
    .service-item {
        background-color: #f8f8f8;
        border: 1px solid #eee;
        text-align: left;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .service-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .service-content {
        padding: 15px 20px;
    }

    .service-content h3 {
        font-size: 18px;
        color: #28c9cf;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

}

@media (max-width: 768px) {
    .service-grid-for-detail {
        grid-template-columns: 1fr;
    }

    .service-grid-for-detail .service-item img {
        height: 180px;
    }
}
