        /* --- CONTAINER --- */
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- TOP MINI HEADER --- */
        .top-meta-bar {
            border-bottom: 1px solid #e0e0e0;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            padding: 10px 0;
        }
        .top-meta-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .meta-right span {
            margin-left: 20px;
        }

        /* --- MAIN NAVIGATION --- */
        .main-header {
            padding: 25px 0;
            background-color: #fff;
        }
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 24px;
            font-weight: 500;
            letter-spacing: 2px;
            color: #0d233a;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .main-nav ul li {
            margin-left: 30px;
        }
        .main-nav ul li a {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            color: #333;
            transition: color 0.3s;
        }
        .main-nav ul li.active a {
            color: #0d233a;
            position: relative;
        }
        /* Thanh gạch dưới menu đang chọn giống trong ảnh */
        .main-nav ul li.active a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #0d233a;
        }
        .lang-selector i {
            font-size: 10px;
            margin-left: 3px;
        }

        /* --- BANNER HERO --- */
        .hero-section {
            position: relative;
            height: 380px;
            background-image: url('images/bghead.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        .hero-title-box {
            padding: 50px 80px 50px 0px;
            max-width: 450px;
        }
        .hero-title-box h1 {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 400;
            color: #0d233a;
            margin-bottom: 15px;
        }
        .hero-title-box .decor-line {
            width: 40px;
            height: 2px;
            background-color: #0d233a;
        }

        /* --- CONTENT ROW LAYOUT (Sidebar - Main Content) --- */
        .content-section {
            padding: 60px 0;
        }
        .content-row {
            display: flex;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid #eeeeee;
        }
        .content-row:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .section-sidebar {
            width: 25%;
            padding-right: 30px;
        }
        .section-sidebar h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 400;
            color: #0d233a;
        }
        .section-body {
            width: 75%;
            color: #555555;
            font-size: 14px;
        }
        .section-body p {
            margin-bottom: 20px;
        }
        .section-body p:last-child {
            margin-bottom: 0;
        }

        /* --- PARTNERS GRID --- */
        .partners-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 30px;
        }
        .partner-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .partner-img {
            width: 160px;
            height: 220px;
            object-fit: cover;
            background-color: #f0f0f0;
        }
        .partner-info {
            flex: 1;
        }
        .partner-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 400;
            color: #0d233a;
            margin-bottom: 2px;
        }
        .partner-role {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888888;
            margin-bottom: 10px;
            display: block;
        }
        .partner-decor {
            width: 25px;
            height: 1px;
            background-color: #888888;
            margin-bottom: 15px;
        }
        .partner-bio {
            font-size: 12px;
            line-height: 1.6;
            color: #666;
        }

        /* --- FOOTER --- */
        .main-footer {
            background-color: #041626;
            color: #ffffff;
            padding: 50px 0 30px 0;
            font-size: 13px;
        }
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 40px;
            margin-bottom: 20px;
        }
        .footer-brand h2 {
            font-family: 'Cinzel', serif;
            font-size: 20px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .footer-brand p {
            font-size: 12px;
            color: #a0b0c0;
        }
        .footer-contacts {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 10px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: #d0d8e0;
        }
        .contact-item i {
            color: #a0b0c0;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #708090;
        }
        .linkedin-icon {
            font-size: 18px;
            color: #ffffff;
            transition: color 0.3s;
        }
        .linkedin-icon:hover {
            color: #a0b0c0;
        }

/* Breadcrumb điều hướng phía trên tiêu đề */
.breadcrumb {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 25px;
}
.breadcrumb a {
    color: #888888;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #0d233a;
}
.breadcrumb .separator {
    margin: 0 8px;
    color: #cccccc;
}

/* Subtitle mô tả trong khối Hero */
.hero-title-box p.hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    margin-top: 25px;
    font-family: 'Work Sans', sans-serif;
}

/* Thanh điều hướng danh mục Practice Areas Sub-menu */
.practice-nav-bar {
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}
.practice-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 20px 0;
    overflow-x: auto; /* Hỗ trợ scroll ngang tự động trên mobile nếu menu quá dài */
    white-space: nowrap;
}
.practice-nav-list li {
    margin-right: 25px;
    font-size: 12px;
    color: #555555;
}
.practice-nav-list li:first-child {
    margin-right: auto; /* Đẩy nút "ALL PRACTICE AREAS" về bên trái tuyệt đối */
}
.practice-nav-list li a {
    color: #666666;
    transition: color 0.3s;
    font-weight: 400;
}
.practice-nav-list li a:hover {
    color: #0d233a;
}
/* Trạng thái Active của danh mục đang chọn */
.practice-nav-list li.sub-active a {
    color: #0d233a;
    font-weight: 500;
    position: relative;
}
.practice-nav-list li.sub-active a::after {
    content: '';
    position: absolute;
    bottom: -22px; /* Đặt đường kẻ mảnh nằm đè khớp lên border-bottom của cụm cha */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0d233a;
}
.practice-nav-list li a i {
    margin-right: 6px;
    font-size: 11px;
}

/* Nội dung giới thiệu đầu trang chi tiết */
.intro-lead-text {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    padding: 60px 0 40px 0;
}

/* Grid danh sách quy trình 6 bước ứng với thiết kế */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Chia làm 2 cột bằng nhau */
    column-gap: 80px;
    row-gap: 50px;
    padding-bottom: 80px;
}
.process-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 35px;
}
.process-item:nth-last-child(1),
.process-item:nth-last-child(2) {
    border-bottom: none; /* Khử đường kẻ ngang ở 2 item cuối cùng */
}
.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0d233a;
    line-height: 1;
    font-weight: 400;
    min-width: 40px;
}
.process-content {
    flex: 1;
}
.process-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #0d233a;
    margin-bottom: 15px;
    line-height: 1.3;
}
.process-bullets {
    list-style: none;
}
.process-bullets li {
    font-size: 13px;
    color: #555555;
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}
.process-bullets li:last-child {
    margin-bottom: 0;
}
/* Tạo dấu chấm tròn nhỏ tùy chỉnh đầu dòng */
.process-bullets li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #666666;
    border-radius: 50%;
}

        /* Responsive cơ bản cho Mobile */
        @media (max-width: 768px) {
            .main-header .container, .top-meta-bar .container {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .main-nav ul {
                padding-top: 10px;
            }
            .main-nav ul li {
                margin: 0 10px;
            }
            .content-row {
                flex-direction: column;
            }
            .section-sidebar {
                width: 100%;
                margin-bottom: 15px;
            }
            .section-body {
                width: 100%;
            }
            .partners-grid {
                grid-template-columns: 1fr;
            }
            .footer-top {
                flex-direction: column;
                gap: 30px;
            }
            .footer-contacts {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
.practice-nav-list {
        padding: 15px 0;
    }
    .practice-nav-list li:first-child {
        margin-right: 20px;
    }
    .practice-nav-list li.sub-active a::after {
        bottom: -17px;
    }
    .process-grid {
        grid-template-columns: 1fr; /* Chuyển thành 1 cột trên điện thoại */
        row-gap: 40px;
    }
    .process-item {
        border-bottom: 1px solid #f2f2f2 !important;
        padding-bottom: 25px;
    }
    .process-item:last-child {
        border-bottom: none !important;
    }
        }