main {
    padding-top: 80px;
}

.legal-content {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}
.legal-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A202C;
    margin: 0 0 10px;
}
.legal-content .subtitle {
    font-size: 1.15rem;
    color: #4A5568;
    margin-bottom: 40px;
}
.legal-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A202C;
    margin: 50px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}
.legal-content h3:first-of-type {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
}
.legal-content p, .legal-content li {
    font-size: 1.05rem;
    color: #2D3748;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}
.legal-content li span {
    font-weight: 500;
    color: #1A202C;
}
.legal-content strong {
    font-weight: 600;
}
.legal-content a {
    color: #4C51BF;
    font-weight: 500;
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
    color: #4348A2;
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: rgba(76, 81, 191, 0.7);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.btn-back-to-top.visible {
    opacity: 1;
}
.btn-back-to-top:hover {
    transform: scale(1.05);
    background: rgba(76, 81, 191, 0.9);
}

/* Animations */
.legal-content h2, .legal-content .subtitle, .legal-content h3, .legal-content p, .legal-content ul {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 50px 15px;
    }
    .legal-content h2 {
        font-size: 2rem;
    }
    .legal-content h3 {
        font-size: 1.5rem;
    }
    .legal-content p, .legal-content li {
        font-size: 1rem;
    }
    .legal-content .subtitle {
        font-size: 1rem;
    }
    .btn-back-to-top {
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}