.content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
}

.toc-sidebar {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.toc-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    color: var(--primary);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.7rem;
}

.toc-list a {
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.2s ease;
    font-weight: 500;
    margin-top: 20px;
}

.toc-list a:hover {
    color: var(--primary);
}

.toc-list a i {
    font-size: 0.8rem;
    color: var(--primary);
}

.toc-list a.active {
    color: var(--primary);
    font-weight: 600;
}

.policy-content {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px var(--shadow);
    margin-top: 120px;
}

.section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.title {
    font-size: 1.25rem;
    color: #1e293b;
    margin: 1.5rem 0 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #475569;
}

.in-short {
    background-color: #f1f8ff;
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.in-short strong {
    color: var(--primary);
}

ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

ul li {
    margin-bottom: 0.5rem;
    color: #475569;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.link:hover {
    text-decoration: underline;
}

.contact-box {
    background-color: #f0f9ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight {
    background-color: #fffbeb;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
    }

    .toc-sidebar {
        flex: 0 0 auto;
        position: static;
    }

    .policy-content {
        padding: 1.75rem;
    }
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .toc-sidebar {
        margin-top: 60px;
    }

    .date-display {
        align-self: flex-start;
    }

    .policy-content {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }
}