.section-padding {
    padding: 120px 0 80px;
}

.legal-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    min-height: 80vh;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #f59e0b;
    font-weight: 700;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.legal-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-item h2 {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-item p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.legal-item ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-item li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footer {
    background: #1e293b;
    padding: 40px 0 20px;
}

.footer-center {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
}

.legal-link {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.legal-link:hover {
    color: #f59e0b;
}

.legal-link.active {
    color: #f59e0b;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .legal-item h2 {
        font-size: 1.3rem;
    }
}
