.legal-main {
    padding-top: 150px;
    min-height: 100vh;
}

.legal-section {
    padding-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.section-title span {
    color: #333;
    font-weight: 700;
}

.tos-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tos-card-large {
    background: #060606;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tos-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

.tos-section-header i {
    font-size: 1.5rem;
    color: #fff;
}

.tos-section-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.tos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tos-item {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.tos-item:hover {
    background: rgba(255, 255, 255, 0.027);
    transform: translateX(10px) !important;
}

.tos-number {
    font-family: monospace;
    color: #444;
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 2px;
}

.tos-item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.tos-footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.switch-page-btn, .back-home-btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 250px;
    justify-content: center;
}

.switch-page-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.switch-page-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.back-home-btn {
    background: #060606;
    border: 2px solid #222;
    color: #888;
}

.back-home-btn:hover {
    border-color: #444;
    color: #fff;
}


.switch-page-btn i, 
.back-home-btn i {
    transition: transform 0.3s ease;
}

.switch-page-btn:hover i {
    transform: translateX(5px);
}

.back-home-btn:hover i {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .tos-card-large {
        padding: 30px 20px;
    }
    
    .tos-item {
        flex-direction: column;
        gap: 10px;
    }
}