.policy {
    padding: 160px 0 80px;
    color: var(--text-white);
}

.policy h1 {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.policy h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--accent-orange);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.date-update {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-gray);
    font-style: italic;
}

.policy-content {
    background: rgba(14, 18, 43, 0.7);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: left;
    width: auto;
    display: block;
}

.policy-section h2:after {
    display: none;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: left;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.policy-section ul li {
    margin-bottom: 8px;
}

.policy-footer {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
} 