.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.policy-container > h2,
.policy-container > .policy-date {
    display: none;
}

.policy-tabs {
    display: flex;
    border-bottom: 2px solid #374151;
    margin-bottom: 2.5rem;
}

.policy-tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--subText-color);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    top: 2px;
}

.policy-tab-button:hover {
    color: var(--dark-color);
    background-color: #374151;
}

.policy-tab-button.active {
    color: var(--theme-color);
    font-weight: 600;
    border-bottom-color: var(--theme-color);
}

.policy-content {
    display: none;
}

.policy-content.active {
    display: block;
}

.policy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    border-bottom: 2px solid var(--theme-color);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.policy-content .policy-date {
    font-size: 1rem;
    color: var(--subText-color);
    margin-bottom: 3rem;
}

.policy-content section {
    margin-bottom: 2.5rem;
}

.policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.policy-content p {
    font-size: 1.05rem;
    color: var(--subText-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
    color: var(--subText-color);
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--dark-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 2rem 1rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policy-tabs {
        flex-wrap: wrap;
    }

    .policy-tab-button {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

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

    .policy-content h3 {
        font-size: 1.25rem;
    }
}