/* style-to-tung.css - Giao diện Tố tụng Uy nghiêm */
.to-tung-wrapper {
    background-color: var(--deep-navy);
    color: #ffffff;
    padding-bottom: 100px;
}

.hero-to-tung {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(10, 15, 29, 0.9), rgba(10, 15, 29, 0.9)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

/* Biến danh sách thành các khối thẻ dịch vụ tố tụng */
.my-custom-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Chia 2 cột cho sự mạnh mẽ */
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.my-custom-content li {
    background: linear-gradient(145deg, #161f33, #0f172a);
    padding: 40px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-gold); /* Điểm nhấn viền trái */
    transition: 0.3s ease;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.2);
}

.my-custom-content li:hover {
    transform: scale(1.02);
    background: #1e293b;
    box-shadow: 0 15px 30px rgba(194, 161, 114, 0.1);
}

.my-custom-content li strong {
    color: var(--primary-gold);
    font-size: 1.4rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 850px) {
    .my-custom-content ul { grid-template-columns: 1fr; }
}