@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c3e50;
    --accent-color: #c9a961;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #b8944f;
    --teal-dark: #007375;
    --teal-bg: #008a8d;
    --off-white: #f8f9fa;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Bodoni', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-utilities {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
}

.search-icon-btn:hover {
    color: var(--teal-dark);
}

.search-icon-btn svg {
    width: 20px;
    height: 20px;
}

.language-selector {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-selector:hover {
    color: var(--teal-dark);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-section-bj {
    background: #f5f5f5;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.hero-container-bj {
    margin: 0 auto;
    width: 100%;
}

.hero-content-wrapper {
    max-width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 640px;
    border-radius: 8px;
}

.hero-title-bj {
    font-family: 'Libre Bodoni', serif;
    font-size: 80px;
    line-height: 1.3;
    margin-bottom: 50px;
    color: #1d2529;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.hero-title-line-1 {
    font-weight: 500;
    font-style: italic;
}

.hero-title-line-2 {
    font-weight: 800;
}

.hero-year {
    font-weight: 500;
    font-style: italic;
}

.hero-description-bj {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 35px;
    text-align: left;
    max-width: 600px;
    width: 100%;
    font-weight: 400;
}

.cta-button-bj {
    display: inline-flex;
    padding: 10px 24px;
    background: var(--teal-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    max-width: 600px;
}

.cta-button-bj:hover {
    background: var(--teal-bg);
}


.intro-text-section {
    background: var(--off-white);
    padding: 60px 20px;
    text-align: center;
}

.intro-text-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.intro-text-line {
    flex: 1;
    height: 2px;
    background: var(--teal-dark);
    max-width: 200px;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0;
    font-style: italic;
    flex-shrink: 0;
}

.our-work-section {
    background-image: url('../images/stock-pexels-leaves.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 20px;
    color: var(--white);
    overflow: hidden;
    height: 931px;
    display: flex;
    align-items: center;
}


.our-work-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.work-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1200px;
}

.work-header-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.work-header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
}

.section-header-bj {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title-bj {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.our-work-section .section-title-bj {
    color: var(--white);
}

.see-all-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.see-all-link:hover {
    opacity: 0.8;
}

.work-cards-carousel {
    overflow: hidden;
    position: relative;
}

.work-cards-wrapper {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
    align-items: center;
}

.work-card {
    background: hsla(0,0%,100%,.08)!important;
    padding: 30px;
    border-radius: 4px;
    width: 302px;
    height: 302px;
    flex-shrink: 0;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-card:nth-child(2),
.work-card:nth-child(4) {
    height: 403px;
}

.work-card:hover {
    background: var(--teal-dark)!important;
}

.work-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
    font-weight: 500;
}

.work-card-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

.explore-services-section {
    background: #f5f5f5;
    padding: 100px 20px;
}

.services-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.services-left-column {
    display: flex;
    flex-direction: column;
}

.services-left-column .section-title-bj {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 3.5rem;
    text-align: left;
}

.services-intro {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.services-left-column .cta-button-bj {
    align-self: flex-start;
}

.services-right-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item-bj {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.service-item-bj:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item-bj h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.service-item-bj p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.meet-team-section {
    background: #1d2529;
    padding: 80px 20px;
    color: var(--white);
}

.team-section-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.team-header-left .section-title-bj {
    color: var(--white);
    margin-bottom: 25px;
}

.team-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.team-header-left .cta-button-bj {
    background: var(--teal-dark);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.team-header-right {
    padding: 0;
}

.find-professional-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Libre Bodoni', serif;
    margin-bottom: 30px;
    color: var(--white);
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-field label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: var(--white);
    color: var(--text-color);
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.filter-select option {
    background: var(--white);
    color: var(--text-color);
}

.search-button {
    padding: 8px 18px;
    background: var(--teal-dark);
    color: var(--white);
    border: 1px solid var(--teal-dark);
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    margin-top: 10px;
}

.search-button:hover {
    background: var(--teal-bg);
    border-color: var(--teal-bg);
}

.team-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-photo-item {
    text-align: center;
}

.team-photo-circle {
    width: 306px;
    height: 306px;
    margin: 0 auto 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-dark) 0%, #008a8d 50%, #00a0a3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-photo-item:nth-child(2) .team-photo-circle,
.team-photo-item:nth-child(4) .team-photo-circle {
    height: 240px;
}

.team-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.team-photo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.team-photo-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.news-section-bj {
    background: #f4f4f4;
    padding: 80px 20px;
}

.news-section-bj .section-title-bj {
    color: var(--primary-color);
}

.news-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item-bj {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid var(--teal-dark);
}

.news-item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-item-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.news-item-authors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.news-author-info {
    display: flex;
    align-items: center;
}

.news-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    background: var(--bg-light);
}

.insights-section {
    background: #fff;
    padding: 80px 20px;
}

.insights-section .section-title-bj {
    color: var(--primary-color);
}

.insights-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.insight-featured {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.insight-featured-image {
    width: 100%;
    height: 505px;
    object-fit: cover;
    background: var(--bg-light);
}

.insight-featured-content {
    padding: 30px;
}

.insight-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.insight-featured-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.insight-featured-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.insight-featured-authors {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insight-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    background: var(--bg-light);
}

.insight-author-name {
    font-size: 0.85rem;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.insights-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insight-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    gap: 20px;
}

.insight-card:hover {
    transform: translateY(-3px);
}

.insight-card-image {
    width: 282px;
    min-width: 282px;
    height: 210px;
    object-fit: cover;
    background: var(--bg-light);
}

.insight-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.insight-card-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.insight-card-authors {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.firm-story-section {
    background: #003f40;
    padding: 100px 20px 80px;
    color: var(--white);
}

.story-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.story-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story-title-main {
    font-family: 'Libre Bodoni', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    font-style: normal;
}

.story-title-script {
    font-family: 'Libre Bodoni', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    margin-top: -10px;
}

.story-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.firm-story-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

.story-about-button {
    display: inline-flex;
    padding: 8px 20px;
    background: var(--teal-bg);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
    align-self: flex-start;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.story-about-button:hover {
    background: #009fa2;
}

.story-industries-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 40px;
}

.industry-filter-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 36px;
    white-space: nowrap;
}

.industry-filter-btn:hover,
.industry-filter-btn.active {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.subscribe-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.subscribe-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subscribe-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscribe-section .section-title-bj {
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: left;
    font-size: 3rem;
}

.subscribe-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.email-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    min-height: 44px;
}

.email-input:focus {
    outline: none;
    border-color: var(--teal-dark);
}

.subscribe-button {
    padding: 10px 24px;
    background: var(--teal-dark);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 44px;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: var(--teal-bg);
}

.main-footer-bj {
    background: #1d2529;
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-content-bj {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.offices-column .office-info {
    margin-bottom: 0;
}

.offices-column .office-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.offices-column .office-info strong {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.offices-links-column h4 {
    visibility: hidden;
}

.office-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-links-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.office-links-list a:hover {
    color: var(--white);
}

.footer-bottom-bj {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.footer-bottom-bj::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.footer-bottom-bj > * {
    position: relative;
    z-index: 1;
}

.footer-bottom-bj p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-social-lang {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: var(--white);
}

.language-selector-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-selector-footer:hover {
    color: var(--white);
}

.language-selector-footer svg {
    width: 18px;
    height: 18px;
}

.cta-button {
    display: inline-flex;
    padding: 10px 28px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--hover-color);
}

.cta-button-secondary {
    display: inline-flex;
    padding: 8px 20px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.featured-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--hover-color);
}

.team-preview {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-member-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--bg-light);
    display: block;
}

.team-member-info {
    padding: 25px;
}

.team-member-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member-title {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.news-section {
    padding: 80px 20px;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    object-fit: cover;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

.news-card-content {
    padding: 25px;
}

.news-card-date {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.people-dropdown-overlay,
.services-dropdown-overlay,
.industries-dropdown-overlay,
.knowledge-dropdown-overlay,
.firm-dropdown-overlay,
.careers-dropdown-overlay,
.offices-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 63, 64, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.people-dropdown-overlay.active,
.services-dropdown-overlay.active,
.industries-dropdown-overlay.active,
.knowledge-dropdown-overlay.active,
.firm-dropdown-overlay.active,
.careers-dropdown-overlay.active,
.offices-dropdown-overlay.active {
    opacity: 1;
    visibility: visible;
}

.people-dropdown-panel,
.services-dropdown-panel,
.industries-dropdown-panel,
.knowledge-dropdown-panel,
.firm-dropdown-panel,
.careers-dropdown-panel,
.offices-dropdown-panel {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 800px;
    height: 600px;
    max-width: 90%;
    max-height: 600px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    overflow: hidden;
}

.people-dropdown-panel.active,
.services-dropdown-panel.active,
.industries-dropdown-panel.active,
.knowledge-dropdown-panel.active,
.firm-dropdown-panel.active,
.careers-dropdown-panel.active,
.offices-dropdown-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.people-panel-container,
.services-panel-container,
.industries-panel-container,
.knowledge-panel-container,
.firm-panel-container,
.careers-panel-container,
.offices-panel-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    height: 600px;
}

.people-panel-sidebar,
.industries-panel-sidebar {
    background: var(--white);
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    scroll-behavior: smooth;
}

.knowledge-panel-sidebar {
    background: var(--white);
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    max-height: 22rem;
    scroll-behavior: smooth;
}

.services-panel-sidebar {
    background: var(--white);
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    max-height: 30rem;
    scroll-behavior: smooth;
}

.firm-panel-sidebar {
    background: var(--white);
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    max-height: 30rem;
    scroll-behavior: smooth;
}

.careers-panel-sidebar {
    background: var(--white);
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    max-height: 15rem;
    scroll-behavior: smooth;
}

.offices-panel-sidebar {
    background: var(--white);
    padding: 30px 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    max-height: 8rem;
    scroll-behavior: smooth;
}

.people-panel-sidebar {
    font-family: 'Libre Bodoni', serif;
}

.people-panel-title,
.services-panel-title,
.industries-panel-title,
.knowledge-panel-title,
.firm-panel-title,
.careers-panel-title,
.offices-panel-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 280px;
}

.people-see-all,
.services-see-all,
.industries-see-all,
.knowledge-see-all,
.firm-see-all,
.careers-see-all,
.offices-see-all {
    display: inline-block;
    color: var(--teal-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
    max-width: 280px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.people-see-all:hover,
.services-see-all:hover,
.industries-see-all:hover,
.knowledge-see-all:hover,
.firm-see-all:hover,
.careers-see-all:hover,
.offices-see-all:hover {
    opacity: 0.7;
}

.industry-item {
    margin-bottom: 15px;
}

.industry-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Libre Bodoni', serif;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 3px 0;
}

.industry-link:hover {
    color: var(--teal-dark);
}

.knowledge-category {
    margin-bottom: 12px;
}

.knowledge-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.knowledge-category-link:hover {
    color: var(--teal-dark);
}

.knowledge-category-link:hover .knowledge-arrow {
    stroke: var(--teal-dark);
}

.knowledge-arrow {
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.knowledge-separator {
    margin: 25px 0 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.knowledge-section {
    margin-bottom: 18px;
    padding: 0;
}

.knowledge-section-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0;
}

.knowledge-section-link:hover {
    color: var(--teal-dark);
}

.knowledge-category-link.active {
    color: var(--teal-dark);
}

.knowledge-category-link.active .knowledge-arrow {
    stroke: var(--teal-dark);
}

.knowledge-list-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px;
    max-width: 400px;
}

.knowledge-list-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 400px;
}

.knowledge-list-explore {
    display: block;
    color: var(--teal-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 25px;
    transition: opacity 0.3s ease;
    max-width: 400px;
}

.knowledge-list-explore:hover {
    opacity: 0.7;
}

.knowledge-list-items {
    max-height: 370px;
    overflow-y: auto;
}

.knowledge-list-items::-webkit-scrollbar {
    width: 6px;
}

.knowledge-list-items::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.knowledge-list-items::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.knowledge-list-items::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.knowledge-list-item {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: color 0.3s ease;
}

.knowledge-list-item:hover {
    color: var(--teal-dark);
}

.knowledge-list-item:last-child {
    border-bottom: none;
}

.firm-item,
.careers-item {
    margin-bottom: 15px;
}

.firm-link,
.careers-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Libre Bodoni', serif;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 3px 0;
}

.firm-link:hover,
.careers-link:hover {
    color: var(--teal-dark);
}

.office-location {
    margin-bottom: 18px;
}

.office-location-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Libre Bodoni', serif;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 3px 0;
}

.office-location-link:hover {
    color: var(--teal-dark);
}

.office-arrow {
    width: 12px;
    height: 12px;
    color: var(--text-color);
    flex-shrink: 0;
}

.service-category {
    margin-bottom: 0;
}

.service-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Libre Bodoni', serif;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 3px 0;
}

.service-category-link:hover {
    color: var(--teal-dark);
}

.service-arrow {
    width: 12px;
    height: 12px;
    color: var(--text-color);
    flex-shrink: 0;
}

.service-separator {
    margin: 20px 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.service-section {
    padding-left: 0;
}

.service-section-link {
    display: block;
    font-family: 'Libre Bodoni', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.service-section-link:hover {
    color: var(--teal-dark);
}

.service-category-link.active {
    color: var(--teal-dark);
}

.service-category-link.active .service-arrow {
    stroke: var(--teal-dark);
}

.services-category-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px;
    padding-left: 20px;
    max-width: 400px;
}

.services-detail-list {
    overflow-y: auto;
    padding-left: 20px;
    max-width: 400px;
}

.services-detail-list::-webkit-scrollbar {
    width: 6px;
}

.services-detail-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.services-detail-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.services-detail-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.services-detail-section {
    margin-bottom: 20px;
    padding: 0;
}

.services-detail-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 10px;
}

.services-detail-items {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.services-detail-item {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.services-detail-item:hover {
    color: var(--teal-dark);
}

.service-section-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
}

.people-page-main {
    background: var(--teal-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-top: 0;
}

.people-page-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--teal-dark);
    z-index: -1;
}

.people-page-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
}

.people-sidebar {
    background: var(--white);
    padding: 60px 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.people-sidebar-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 50px;
    line-height: 1.2;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 8px 0;
}

.filter-header.expanded .filter-arrow {
    transform: rotate(180deg);
}

.filter-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 3px 0;
}

.filter-arrow {
    width: 12px;
    height: 12px;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-content.collapsed {
    display: none;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

.filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--teal-bg);
}

.filter-checkbox:hover {
    color: var(--teal-dark);
}

.people-panel-content,
.services-panel-content {
    padding: 0;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    scroll-behavior: smooth;
    margin-bottom: 5rem;
}

.industries-panel-content,
.knowledge-panel-content,
.firm-panel-content {
    padding: 0;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-behavior: smooth;
    margin-bottom: 5rem;
}

.careers-panel-content,
.offices-panel-content {
    padding: 0;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-behavior: smooth;
    margin-bottom: 5rem;
}

.careers-content-image {
    width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.offices-content-image {
    width: 400px;
    height: 200px;
    object-fit: cover;
}

.dropdown-content-block {
    border-radius: 8px;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.careers-content-title,
.offices-content-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 25px 0 15px;
    line-height: 1.3;
    width: 400px;
    max-width: 400px;
}

.careers-content-text,
.offices-content-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 20px;
    width: 400px;
    max-width: 400px;
}

.careers-learn-more,
.careers-positions,
.offices-general-link,
.offices-media-link,
.offices-alumni-link {
    display: block;
    color: var(--teal-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 12px;
    transition: opacity 0.3s ease;
    width: 400px;
    max-width: 400px;
}

.careers-learn-more:hover,
.careers-positions:hover,
.offices-general-link:hover,
.offices-media-link:hover,
.offices-alumni-link:hover {
    opacity: 0.7;
}

.careers-positions {
    margin-bottom: 40px;
}

.office-details {
    width: 400px;
    max-width: 400px;
    max-height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.office-name {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 20px;
    max-width: 400px;
}

.office-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

.office-address p {
    margin: 2px 0;
}

.office-image {
    width: 400px;
    height: 200px;
    object-fit: cover;
    margin: 20px 0;
    border-radius: 8px;
}

.office-directions,
.office-phone,
.office-more-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 12px 0;
    transition: opacity 0.3s ease;
    max-width: 400px;
}

.office-directions:hover,
.office-phone:hover,
.office-more-link:hover {
    opacity: 0.7;
}

.office-directions svg,
.office-phone svg,
.office-fax svg {
    flex-shrink: 0;
}

.office-contact {
    margin: 15px 0;
    max-width: 400px;
}

.office-fax {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 12px 0;
    max-width: 400px;
}

.office-more-link {
    margin-top: 20px;
}

.office-location.active .office-location-link {
    color: var(--teal-dark);
}

.industries-carousel-container,
.knowledge-carousel-container,
.firm-carousel-container,
.offices-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.industries-carousel-slide,
.knowledge-carousel-slide,
.firm-carousel-slide {
    display: none;
    background: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    max-width: 400px;
}

.industries-carousel-slide.active,
.knowledge-carousel-slide.active,
.firm-carousel-slide.active {
    display: block;
    opacity: 1;
}

.industry-carousel-image,
.knowledge-carousel-image,
.firm-carousel-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
}

.industry-carousel-title,
.knowledge-carousel-title,
.firm-carousel-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 20px 0 12px;
    line-height: 1.3;
    width: 400px;
    max-width: 400px;
    padding-left: 20px;
}

.industry-carousel-text,
.knowledge-carousel-text,
.firm-carousel-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0 0 15px;
    width: 400px;
    max-width: 400px;
    padding: 0 20px 0 20px;
}

.industry-learn-more,
.knowledge-learn-more,
.firm-learn-more {
    display: inline-block;
    color: var(--teal-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 25px;
    transition: opacity 0.3s ease;
    width: 400px;
    max-width: 400px;
    padding-left: 20px;
}

.industry-learn-more:hover,
.knowledge-learn-more:hover,
.firm-learn-more:hover {
    opacity: 0.7;
}

.industries-carousel-controls,
.knowledge-carousel-controls,
.firm-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 0 25px;
    width: 100%;
    max-width: 400px;
    background: #ffffff;
}

.industries-carousel-counter,
.knowledge-carousel-counter,
.firm-carousel-counter {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-slide,
.current-slide-industries,
.current-slide-knowledge,
.current-slide-firm {
    font-weight: 600;
}

.slide-separator {
    color: var(--teal-dark);
}

.total-slides,
.total-slides-industries,
.total-slides-knowledge,
.total-slides-firm {
    color: rgba(0, 0, 0, 0.5);
}

.industries-carousel-buttons,
.knowledge-carousel-buttons,
.firm-carousel-buttons {
    display: flex;
    gap: 10px;
}

.industries-carousel-prev,
.industries-carousel-next,
.knowledge-carousel-prev,
.knowledge-carousel-next,
.firm-carousel-prev,
.firm-carousel-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industries-carousel-prev svg,
.industries-carousel-next svg,
.knowledge-carousel-prev svg,
.knowledge-carousel-next svg,
.firm-carousel-prev svg,
.firm-carousel-next svg {
    width: 20px;
    height: 20px;
}

.industries-carousel-prev:hover,
.industries-carousel-next:hover,
.knowledge-carousel-prev:hover,
.knowledge-carousel-next:hover,
.firm-carousel-prev:hover,
.firm-carousel-next:hover {
    background: var(--teal-dark);
    color: var(--white);
    border-color: var(--teal-dark);
}

.people-content-area {
    padding: 60px 80px;
    position: relative;
    min-height: 100vh;
    background: transparent;
}

.people-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.people-main-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.people-see-all-link {
    color: var(--teal-bg);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.people-see-all-link:hover {
    opacity: 0.8;
}

.people-search-container {
    margin-bottom: 40px;
}

.people-search-container .people-search-box {
    background: var(--white);
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.people-panel-content .people-search-box,
.services-panel-content .services-search-box,
.industries-panel-content .industries-search-box {
    background: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
}

.services-panel-content .services-search-box {
    width: 100%;
}

.people-list-container {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.people-list-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.people-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.people-list-item:last-child {
    border-bottom: none;
}

.people-list-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    flex-shrink: 0;
}

.people-list-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.people-list-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.people-list-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.3;
}

.people-list-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.2;
    font-weight: 400;
}

.services-list-container {
    background: #ffffff;
    border-radius: 8px;
    max-height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.services-list-grid {
    margin-top: 20px;
}

.service-category-section {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-category-heading {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 15px;
}

.service-subcategory {
    margin-bottom: 20px;
}

.service-subcategory-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 10px;
}

.service-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 15px;
}

.service-list-link {
    display: block;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.service-list-link:hover {
    color: var(--teal-dark);
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.industries-search-box {
    margin-bottom: 20px;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.people-search-input,
.services-search-input,
.industries-search-input {
    border: none;
    outline: none;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    background: none;
    border-bottom: 1px solid #b3b3b3;
    padding: 10px;
}

.people-search-input::placeholder,
.services-search-input::placeholder,
.industries-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.people-results-container {
    background: var(--white);
    border-radius: 4px;
    padding: 40px;
    min-height: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.people-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.people-card {
    text-align: center;
}

.people-card-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
}

.people-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.people-card-info {
    text-align: center;
}

.people-card-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.people-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.people-section {
    padding: 0;
    background: var(--white);
}

.people-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.services-detail-section {
    background: none;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.industries-section {
    background: var(--white);
    padding: 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.knowledge-section {
    background: var(--white);
    padding: 0;
}

.knowledge-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.firm-content-section {
    background: var(--white);
    padding: 0;
}

.firm-intro {
    margin-bottom: 60px;
}

.firm-intro h2,
.firm-values h2,
.firm-stats h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.firm-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.firm-values {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.firm-stats {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Libre Bodoni', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.careers-section {
    background: var(--white);
    padding: 0;
}

.careers-intro,
.careers-benefits,
.open-positions,
.careers-cta {
    margin-bottom: 60px;
}

.careers-intro h2,
.careers-benefits h2,
.open-positions h2,
.careers-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.careers-intro p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.positions-list {
    margin-top: 40px;
}

.position-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.position-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.position-location {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.position-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.apply-button {
    display: inline-flex;
    padding: 8px 18px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 14px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.apply-button:hover {
    background: var(--hover-color);
}

.careers-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 8px;
}

.careers-cta p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.offices-section {
    background: var(--white);
    padding: 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.office-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.office-details p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.office-address {
    font-weight: 500;
    color: var(--text-color);
}

.office-phone,
.office-email {
    color: var(--text-light);
}

.contact-section {
    background: var(--bg-light);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.contact-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input[type="submit"],
.contact-form button[type="submit"] {
    min-height: 44px;
    cursor: pointer;
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Hero Section Responsive - Remove Image from 480px to 1600px */
@media (max-width: 1600px) {
    .hero-right {
        display: none;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        max-width: 90%;
        justify-items: center;
    }

    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title-bj {
        font-size: 70px;
        text-align: center;
    }

    .hero-description-bj {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 1400px) {
    .hero-title-bj {
        font-size: 60px;
        text-align: center;
    }

    .hero-description-bj {
        font-size: 1.05rem;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .hero-title-bj {
        font-size: 50px;
        text-align: center;
    }

    .hero-description-bj {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-title-bj {
        font-size: 45px;
        text-align: center;
    }

    .hero-description-bj {
        font-size: 0.95rem;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .header-container {
        padding: 0 15px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .team-grid,
    .people-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .news-grid,
    .knowledge-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container-bj {
        gap: 40px;
    }

    .work-card {
        width: 280px;
        height: 280px;
    }

    .work-card:nth-child(2),
    .work-card:nth-child(4) {
        height: 360px;
    }

    .team-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-items-grid,
    .insights-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 15px;
    }

    .logo img {
        height: 40px;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list a.active::after {
        display: none;
    }

    .nav-list a.active {
        border-bottom: 2px solid var(--accent-color);
    }

    .nav-utilities {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dropdown-overlay,
    .people-dropdown-overlay,
    .services-dropdown-overlay,
    .industries-dropdown-overlay,
    .knowledge-dropdown-overlay,
    .firm-dropdown-overlay,
    .careers-dropdown-overlay,
    .offices-dropdown-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .hero-banner {
        padding: 80px 20px 60px;
    }

    .hero-banner-bj {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .hero-content-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-title-bj {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-title-line-1,
    .hero-title-line-2,
    .hero-year {
        font-size: 38px;
    }

    .hero-description-bj {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .cta-button-bj {
        padding: 14px 30px;
        font-size: 14px;
    }

    .featured-section,
    .team-preview,
    .news-section,
    .cta-section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 1rem;
    }

    .page-header {
        padding: 80px 15px 50px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .services-grid,
    .team-grid,
    .news-grid,
    .people-grid,
    .industries-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card,
    .industry-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3,
    .industry-card h3 {
        font-size: 1.3rem;
    }

    .team-member-photo {
        height: 250px;
    }

    .team-member-info {
        padding: 20px;
    }

    .people-section,
    .services-detail-section,
    .industries-section,
    .knowledge-section,
    .firm-content-section,
    .careers-section,
    .offices-section {
        padding: 0;
    }

    .people-filters,
    .knowledge-filters {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .service-detail {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .firm-intro h2,
    .firm-values h2,
    .firm-stats h2,
    .careers-intro h2,
    .careers-benefits h2,
    .open-positions h2,
    .careers-cta h2 {
        font-size: 1.8rem;
    }

    .firm-stats {
        padding: 40px 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        padding: 25px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 25px 20px;
    }

    .position-item {
        padding: 25px 20px;
    }

    .position-item h3 {
        font-size: 1.3rem;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .office-card {
        padding: 30px 20px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .main-footer {
        padding: 50px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .text-center {
        margin-top: 30px;
    }

    .cta-button-secondary {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
        padding: 0 10px;
    }

    .logo img {
        height: 35px;
    }

    .nav-list {
        top: 60px;
        padding: 20px 15px;
    }

    .hero-banner {
        padding: 60px 15px 40px;
    }

    .hero-banner-bj {
        padding: 80px 15px 60px;
        min-height: auto;
    }

    .hero-content-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-title-bj {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 25px;
        text-align: center;
    }

    .hero-title-line-1,
    .hero-title-line-2,
    .hero-year {
        font-size: 28px;
    }

    .hero-description-bj {
        font-size: 0.85rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 12px;
    }

    .cta-button-bj {
        padding: 12px 28px;
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }

    .work-cards-wrapper {
        gap: 15px;
    }

    .work-card {
        min-width: 280px;
        height: auto;
    }

    .work-card h3 {
        font-size: 1.1rem;
    }

    .work-card p {
        font-size: 0.9rem;
    }

    .featured-section,
    .team-preview,
    .news-section,
    .cta-section {
        padding: 50px 15px;
    }

    .work-section {
        padding: 50px 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .section-title-bj {
        font-size: 2rem;
    }

    .section-subtitle-bj {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 60px 10px 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .services-grid,
    .team-grid,
    .news-grid,
    .people-grid,
    .industries-grid,
    .knowledge-grid {
        gap: 20px;
    }

    .service-card,
    .industry-card,
    .office-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .service-card h3,
    .industry-card h3,
    .office-card h3 {
        font-size: 1.2rem;
    }

    .service-card p,
    .industry-card p {
        font-size: 0.9rem;
    }

    .team-member-photo {
        height: 220px;
    }

    .team-member-info {
        padding: 15px;
    }

    .team-member-name {
        font-size: 1.1rem;
    }

    .team-member-title {
        font-size: 0.85rem;
    }

    .team-member-bio {
        font-size: 0.85rem;
    }

    .news-card-image {
        height: 180px;
    }

    .news-card-content {
        padding: 20px 15px;
    }

    .news-card-title {
        font-size: 1.1rem;
    }

    .news-card-excerpt {
        font-size: 0.9rem;
    }

    .people-section,
    .services-detail-section,
    .industries-section,
    .knowledge-section,
    .firm-content-section,
    .careers-section,
    .offices-section {
        padding: 0;
    }

    .people-filters,
    .knowledge-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .service-detail-content h3 {
        font-size: 1.1rem;
    }

    .service-detail-content p,
    .service-detail-content ul li {
        font-size: 0.95rem;
    }

    .firm-intro h2,
    .firm-values h2,
    .firm-stats h2,
    .careers-intro h2,
    .careers-benefits h2,
    .open-positions h2,
    .careers-cta h2 {
        font-size: 1.6rem;
    }

    .firm-intro p,
    .careers-intro p {
        font-size: 1rem;
    }

    .firm-stats {
        padding: 30px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .value-item h3,
    .benefit-item h3 {
        font-size: 1.2rem;
    }

    .value-item p,
    .benefit-item p {
        font-size: 0.95rem;
    }

    .position-item {
        padding: 20px 15px;
    }

    .position-item h3 {
        font-size: 1.2rem;
    }

    .position-description {
        font-size: 0.95rem;
    }

    .apply-button {
        padding: 8px 20px;
        font-size: 13px;
    }

    .careers-cta {
        padding: 40px 20px;
    }

    .careers-cta p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 40px 10px;
    }

    .contact-content h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    .main-footer {
        padding: 40px 10px 15px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-button-secondary {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-container-bj {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-title-bj {
        font-size: 2.5rem;
    }


    .team-section-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-photo-circle {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .team-photo-item:nth-child(2) .team-photo-circle,
    .team-photo-item:nth-child(4) .team-photo-circle {
        height: auto;
        aspect-ratio: 1;
    }

    .team-photo-name {
        font-size: 0.95rem;
    }

    .team-photo-title {
        font-size: 0.8rem;
    }

    .news-items-grid {
        grid-template-columns: 1fr;
    }

    .footer-content-bj {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .section-title-bj {
        font-size: 2.2rem;
    }

    .intro-text-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .intro-text-line {
        width: 100px;
        max-width: 100px;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .hero-section-bj {
        padding: 60px 15px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title-bj {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-description-bj {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-left .cta-button-bj {
        align-self: center;
    }

    .our-work-section {
        height: auto;
        min-height: 600px;
        padding: 60px 15px;
    }

    .services-two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .explore-services-section,
    .meet-team-section,
    .news-section-bj,
    .insights-section,
    .story-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-title-main {
        font-size: 3rem;
    }

    .story-title-script {
        font-size: 2.5rem;
    }

    .story-industries-filter {
        gap: 10px;
    }

    .industry-filter-btn {
        font-size: 0.85rem;
        padding: 6px 15px;
    }

    .subscribe-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .subscribe-section .section-title-bj {
        text-align: center;
        font-size: 2.2rem;
    }

    .subscribe-description {
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .footer-content-bj {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .firm-story-section,
    .subscribe-section {
        padding: 60px 15px;
    }

    .story-section {
        padding: 60px 15px;
    }

    .insights-section {
        padding: 60px 15px;
    }

    .people-page-wrapper {
        grid-template-columns: 1fr;
    }

    .people-sidebar {
        padding: 40px 20px;
    }

    .people-content-area {
        padding: 40px 20px;
    }

    .people-main-title {
        font-size: 2.5rem;
    }

    .people-sidebar-title {
        font-size: 2.5rem;
    }

    .work-section {
        padding: 60px 20px;
    }

    .our-work-section {
        height: auto;
        min-height: 600px;
    }

    .work-section-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .work-header-left {
        width: 100%;
    }

    .work-header-right {
        width: 100%;
        margin-top: 0;
    }

    .work-carousel-nav {
        gap: 10px;
        justify-content: center;
    }

    .work-nav-btn {
        width: 40px;
        height: 40px;
    }

    .work-cards-carousel {
        max-width: 302px;
        margin: 0 auto;
    }

    .work-card {
        width: 280px;
        height: 280px;
        padding: 25px 20px;
    }

    .work-card:nth-child(2),
    .work-card:nth-child(4) {
        height: 320px;
    }

    .service-item-bj {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .service-item-bj h3 {
        font-size: 1.6rem;
    }

    .team-section-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-photos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-photo-circle {
        width: 250px;
        height: 250px;
    }

    .team-photo-item:nth-child(2) .team-photo-circle,
    .team-photo-item:nth-child(4) .team-photo-circle {
        height: 200px;
    }

    .news-items-grid,
    .insights-layout {
        grid-template-columns: 1fr;
    }

    .insight-featured-image {
        height: 300px;
    }

    .insight-card {
        flex-direction: column;
    }

    .insight-card-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .insight-card-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .insight-card-excerpt {
        font-size: 0.9rem;
    }

    .news-card-title {
        font-size: 1.1rem;
    }

    .news-card-meta {
        font-size: 0.8rem;
    }

    .firm-story-text {
        font-size: 1.1rem;
    }

    .subscribe-form {
        flex-direction: column;
        max-width: 100%;
    }

    .email-input,
    .subscribe-button {
        width: 100%;
    }

    .email-input {
        padding: 14px 18px;
        font-size: 14px;
    }

    .subscribe-button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .story-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-title-main {
        font-size: 2.5rem;
    }

    .story-title-script {
        font-size: 2rem;
    }

    .story-industries-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .industry-filter-btn {
        width: 100%;
    }

    .subscribe-content-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .subscribe-section .section-title-bj {
        font-size: 2rem;
        text-align: center;
    }

    .subscribe-description {
        text-align: center;
    }

    .footer-content-bj {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-bj {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-social-lang {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-title-bj {
        font-size: 1.75rem;
    }

    .hero-title-line-1,
    .hero-title-line-2,
    .hero-year {
        font-size: 1.75rem;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-title-bj {
        font-size: 1.75rem;
    }

    .service-card h3,
    .industry-card h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px 12px;
    }

    .team-photos-grid {
        gap: 15px;
    }

    .hero-title-bj {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cta-button-bj,
    .search-button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .filter-form {
        flex-direction: column;
        gap: 10px;
    }

    .filter-select,
    .search-button {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid,
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid,
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .dropdown-panel,
    .people-dropdown-panel,
    .services-dropdown-panel,
    .industries-dropdown-panel,
    .knowledge-dropdown-panel,
    .firm-dropdown-panel,
    .careers-dropdown-panel,
    .offices-dropdown-panel {
        max-width: 90%;
        width: 90%;
        height: auto;
        max-height: 80vh;
    }

    .dropdown-sidebar,
    .people-panel-sidebar,
    .services-panel-sidebar,
    .industries-panel-sidebar,
    .knowledge-panel-sidebar,
    .firm-panel-sidebar,
    .careers-panel-sidebar,
    .offices-panel-sidebar {
        width: 200px;
        padding: 20px;
    }

    .dropdown-content,
    .people-panel-content,
    .services-panel-content,
    .industries-panel-content,
    .knowledge-panel-content,
    .firm-panel-content,
    .careers-panel-content,
    .offices-panel-content {
        padding: 20px;
    }

    .dropdown-content-block {
        /* width: 100%; */
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    /* Hide scrollbars on mobile */
    * {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    *::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .dropdown-panel,
    .people-dropdown-panel,
    .services-dropdown-panel,
    .industries-dropdown-panel,
    .knowledge-dropdown-panel,
    .firm-dropdown-panel,
    .careers-dropdown-panel,
    .offices-dropdown-panel {
        flex-direction: column;
        max-width: 95%;
        width: 95%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
        top: auto !important;
        left: 50%;
        transform: translateX(-50%);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dropdown-panel::-webkit-scrollbar,
    .people-dropdown-panel::-webkit-scrollbar,
    .services-dropdown-panel::-webkit-scrollbar,
    .industries-dropdown-panel::-webkit-scrollbar,
    .knowledge-dropdown-panel::-webkit-scrollbar,
    .firm-dropdown-panel::-webkit-scrollbar,
    .careers-dropdown-panel::-webkit-scrollbar,
    .offices-dropdown-panel::-webkit-scrollbar {
        display: none;
    }

    /* Change grid to single column on mobile */
    .people-panel-container,
    .services-panel-container,
    .industries-panel-container,
    .knowledge-panel-container,
    .firm-panel-container,
    .careers-panel-container,
    .offices-panel-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        height: auto;
    }

    .dropdown-sidebar,
    .people-panel-sidebar,
    .services-panel-sidebar,
    .industries-panel-sidebar,
    .knowledge-panel-sidebar,
    .firm-panel-sidebar,
    .careers-panel-sidebar,
    .offices-panel-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
        order: 1;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dropdown-sidebar::-webkit-scrollbar,
    .people-panel-sidebar::-webkit-scrollbar,
    .services-panel-sidebar::-webkit-scrollbar,
    .industries-panel-sidebar::-webkit-scrollbar,
    .knowledge-panel-sidebar::-webkit-scrollbar,
    .firm-panel-sidebar::-webkit-scrollbar,
    .careers-panel-sidebar::-webkit-scrollbar,
    .offices-panel-sidebar::-webkit-scrollbar {
        display: none;
    }

    .dropdown-content,
    .people-panel-content,
    .services-panel-content,
    .industries-panel-content,
    .knowledge-panel-content,
    .firm-panel-content,
    .careers-panel-content,
    .offices-panel-content {
        padding: 15px;
        height: auto;
        order: 2;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dropdown-content::-webkit-scrollbar,
    .people-panel-content::-webkit-scrollbar,
    .services-panel-content::-webkit-scrollbar,
    .industries-panel-content::-webkit-scrollbar,
    .knowledge-panel-content::-webkit-scrollbar,
    .firm-panel-content::-webkit-scrollbar,
    .careers-panel-content::-webkit-scrollbar,
    .offices-panel-content::-webkit-scrollbar {
        display: none;
    }

    /* Move search bars to top of content area on mobile - removed order to allow scrolling together */
    .people-panel-content .people-search-box,
    .services-panel-content .services-search-box,
    .industries-panel-content .industries-search-box {
        margin-bottom: 15px;
        width: 100% !important;
    }

    /* Results containers - removed order to allow scrolling together */
    .people-list-container,
    .services-list-container,
    .services-detail-section,
    .dropdown-content-block {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .people-list-container::-webkit-scrollbar,
    .services-list-container::-webkit-scrollbar,
    .services-detail-section::-webkit-scrollbar,
    .dropdown-content-block::-webkit-scrollbar {
        display: none;
    }

    .dropdown-content-block {
        /* width: 100%; */
        max-width: 100%;
    }

    .service-category-heading {
        font-size: 1.1rem;
    }

    .service-subcategory-heading {
        font-size: 0.9rem;
    }

    .service-list-link {
        font-size: 0.85rem;
        padding: 0;
    }

    .industry-carousel-image,
    .knowledge-carousel-image,
    .firm-carousel-image,
    .careers-content-image,
    .offices-content-image,
    .office-image {
        width: 100%;
        max-width: 100%;
    }

    .industry-carousel-title,
    .knowledge-carousel-title,
    .firm-carousel-title,
    .careers-content-title,
    .offices-content-title,
    .office-name {
        font-size: 1.3rem;
        width: 100%;
    }

    .industry-carousel-text,
    .knowledge-carousel-text,
    .firm-carousel-text,
    .careers-content-text,
    .offices-content-text {
        font-size: 0.85rem;
        width: 100%;
    }

    .knowledge-list-items,
    .services-detail-list {
        /* max-height: 300px; */
    }

    .work-section {
        padding: 60px 20px;
    }

    .our-work-section {
        height: auto;
        min-height: 700px;
    }

    .work-section-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .work-header-left {
        width: 100%;
    }

    .work-header-right {
        width: 100%;
        margin-top: 0;
    }

    .work-cards-carousel {
        max-width: 302px;
        margin: 0 auto;
    }

    .work-card {
        width: 280px;
        height: 280px;
    }

    .work-card:nth-child(2),
    .work-card:nth-child(4) {
        height: 360px;
    }

    .people-filter-section,
    .services-category,
    .knowledge-list-item,
    .office-location {
        margin: 8px 0;
    }

    .services-search-box,
    .people-search-box {
        width: 100%;
        padding: 8px 12px;
    }

    .industries-carousel-controls,
    .knowledge-carousel-controls,
    .firm-carousel-controls {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .dropdown-panel,
    .people-dropdown-panel,
    .services-dropdown-panel,
    .industries-dropdown-panel,
    .knowledge-dropdown-panel,
    .firm-dropdown-panel,
    .careers-dropdown-panel,
    .offices-dropdown-panel {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .dropdown-sidebar,
    .people-panel-sidebar,
    .services-panel-sidebar,
    .industries-panel-sidebar,
    .knowledge-panel-sidebar,
    .firm-panel-sidebar,
    .careers-panel-sidebar,
    .offices-panel-sidebar {
        padding: 12px;
    }

    .dropdown-content,
    .people-panel-content,
    .services-panel-content,
    .industries-panel-content,
    .knowledge-panel-content,
    .firm-panel-content,
    .careers-panel-content,
    .offices-panel-content {
        padding: 12px;
    }

    .people-panel-title,
    .services-panel-title,
    .industries-panel-title,
    .knowledge-panel-title,
    .firm-panel-title,
    .careers-panel-title,
    .offices-panel-title {
        font-size: 2rem;
    }

    .industry-carousel-title,
    .knowledge-carousel-title,
    .firm-carousel-title,
    .careers-content-title,
    .offices-content-title,
    .office-name {
        font-size: 1.1rem;
    }

    .industry-carousel-text,
    .knowledge-carousel-text,
    .firm-carousel-text,
    .careers-content-text,
    .offices-content-text {
        font-size: 0.8rem;
    }

    .people-filter-header,
    .services-category-title,
    .knowledge-list-title {
        font-size: 0.9rem;
    }

    .office-address,
    .office-directions,
    .office-phone,
    .office-more-link {
        font-size: 0.85rem;
    }

    .office-details {
        width: 100%;
        max-width: 100%;
    }

    .office-image,
    .offices-content-image {
        width: 100%;
        max-width: 100%;
    }

    .office-name,
    .offices-content-title {
        font-size: 1.3rem;
    }

    .people-list-photo {
        width: 50px;
        height: 50px;
    }

    .people-list-name {
        font-size: 0.9rem;
    }

    .people-list-title {
        font-size: 0.75rem;
    }

    .people-list-item {
        padding: 10px 0;
        gap: 10px;
    }

    .people-list-info {
        gap: 2px;
    }

    .people-list-container {
        padding: 12px;
        max-height: none;
    }
    
    /* Remove max-height from all list containers on mobile */
    .services-list-container {
        max-height: none;
    }
    
    .knowledge-list-items {
        max-height: none;
    }
    
    .office-details {
        max-height: none;
    }
    
    .services-detail-list {
        max-height: none;
    }
    
    .filter-form {
        max-width: 60%;
        margin: 0 auto;
    }
    
    .filter-field {
        gap: 8px;
    }
    
    .filter-field label {
        font-size: 0.9rem;
    }
    
    .filter-select {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .people-search-container .people-search-box {
        max-width: 80%;
        margin: 0 auto;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .people-search-input {
        font-size: 0.85rem;
        flex: 1;
    }
    
    .search-button-bj {
        padding: 10px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

.privacy-policy-page {
    background: #f5f5f5;
}

.breadcrumb-section {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
}

.breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--teal-dark);
}

.breadcrumb span {
    margin: 0 10px;
    color: #999;
}

.privacy-policy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 60px;
}

.privacy-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.privacy-sidebar-right {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.privacy-sidebar-right .sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.privacy-sidebar-right .related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-sidebar-right .related-links li {
    margin-bottom: 12px;
}

.privacy-sidebar-right .related-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-sidebar-right .related-links a:hover {
    color: var(--teal-dark);
}

.sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.privacy-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-nav li {
    margin-bottom: 15px;
}

.privacy-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.privacy-nav-link:hover {
    color: var(--teal-dark);
}

.privacy-content {
    max-width: 900px;
}

.privacy-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 40px;
    line-height: 1.2;
}

.privacy-intro {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.privacy-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-related {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.privacy-related h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--teal-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.related-links a:hover {
    opacity: 0.7;
}

.privacy-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header h2 {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    stroke: var(--text-color);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content p {
    padding: 0 40px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.disclaimer-section,
.section-heading {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-top: 15px;
}

.section-heading {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 20px;
}

.disclaimer-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 1024px) {
    .privacy-policy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-sidebar {
        position: static;
    }

    .privacy-sidebar-right {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 40px 15px;
    }

    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-intro,
    .privacy-related,
    .accordion-header {
        padding: 25px;
    }

    .accordion-content p {
        padding: 0 25px 25px;
    }

    .accordion-header h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2rem;
    }

    .privacy-intro,
    .privacy-related,
    .accordion-header {
        padding: 20px;
    }

    .accordion-content p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}

/* Offices dropdown content full width only on very small screens */
@media (max-width: 420px) {
    .offices-panel-content .dropdown-content-block {
        width: 100%;
    }
}

/* For 420px and above, commented out */
/* @media (min-width: 421px) {
    .offices-panel-content .dropdown-content-block {
        width: auto;
    }
} */

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .header-container {
        max-width: 1400px;
    }
}
