/* Offices Page Styles */
.offices-content {
    background-color: #fff;
    padding: 140px 200px 80px 200px;
}

.offices-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #333;
    text-align: start;
    margin-bottom: 8px;
}

.offices-title-second {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #27368b;
    text-align: start;
    margin-bottom: 0;
}

.offices-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.updated-on {
    font-size: 16px;
    color: #888;
    font-style: italic;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10;
}

/* TOC Card */
.toc-card {
    background: #f3f3f3;
    border-radius: 24px;
    padding: 32px;
    position: relative;
}

.toc-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.toc-list li {
    margin-bottom: 16px;
}

.toc-list li:last-child {
    margin-bottom: 0;
}

.toc-link {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    padding-left: 24px;
    position: relative;
}

.toc-link::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background-color: #2e3ea8;
    transition: all 0.3s ease;
    z-index: 2;
}

.toc-link.active {
    color: #2e3ea8;
    font-weight: 700;
}

.toc-link.active::before {
    height: 100%;
}

/* Reading Progress Bar */
.progress-bar-container {
    position: absolute;
    left: 32px;
    top: 88px;
    bottom: 32px;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.reading-progress-bar {
    width: 100%;
    height: 0;
    background-color: #2e3ea8;
    transition: height 0.1s linear;
}

/* Article Content Styling */
.offices-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #333;
    font-family: "Manrope", sans-serif;
}

.offices-main-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.offices-main-content img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 24px;
    margin: 32px 0;
    display: block;
}

/* Responsive */
@media (min-width: 1400px) {
    .offices-content {
        padding: 140px 100px 80px 100px;
    }
}
@media (max-width: 991.98px) {
    .sticky-sidebar {
        position: static;
        margin-top: 48px;
    }

    .offices-content {
        padding-top: 100px;
    }
}

@media (max-width: 767.98px) {
    .toc-card {
        margin-bottom: 32px;
        order: -1;
    }

    .row {
        display: flex;
        flex-direction: column;
    }

    .col-lg-8 {
        order: 2;
    }

    .col-lg-4 {
        order: 1;
    }
}

html {
    scroll-behavior: smooth;
}
